From fd7403ce2f0fbc4a4c13d554ef8151dec2afc9fd Mon Sep 17 00:00:00 2001 From: Peter M. Groen Date: Tue, 22 Mar 2022 00:39:33 +0100 Subject: [PATCH] Removed noexcept from using std::function --- include/scopeguard.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/scopeguard.h b/include/scopeguard.h index 7c34847..b99bd97 100644 --- a/include/scopeguard.h +++ b/include/scopeguard.h @@ -36,7 +36,7 @@ namespace osdev { namespace components { namespace mqtt { -using CleanUpFunction = std::function; +using CleanUpFunction = std::function; /** * @brief Ensures that a cleanup function is called at the end of the current scope. -- libgit2 0.21.4