From 3357d08c44eb389f5830c5937df049b030d88dee Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Wed, 8 Jan 2025 11:38:26 +0000 Subject: [PATCH] add noexcept keyword to 'Context' destructor --- src/graph/Matching.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graph/Matching.cpp b/src/graph/Matching.cpp index 346909ca5..ddf9bcbf9 100644 --- a/src/graph/Matching.cpp +++ b/src/graph/Matching.cpp @@ -37,7 +37,7 @@ static void removeLeadingWhitespace(std::string& str) { Aidge::SinglePassGraphMatching::Context::Context() = default; Aidge::SinglePassGraphMatching::Context::Context(const Context& other) = default; Aidge::SinglePassGraphMatching::Context& Aidge::SinglePassGraphMatching::Context::operator=(const Context& other) = default; -Aidge::SinglePassGraphMatching::Context::~Context() = default; +Aidge::SinglePassGraphMatching::Context::~Context() noexcept = default; //////////////////////////////////////////////////////////// -- GitLab