-
mentioned in commit d4d3878940c37651b3cbe967afd9e337cb679a5b
-
Status changed to merged
-
Removed noexcept from using std::function MQTT-CPP ready for compiling on C++17 See merge request !5
Showing
1 changed file
include/scopeguard.h
| @@ -36,7 +36,7 @@ namespace osdev { | @@ -36,7 +36,7 @@ namespace osdev { | ||
| 36 | namespace components { | 36 | namespace components { |
| 37 | namespace mqtt { | 37 | namespace mqtt { |
| 38 | 38 | ||
| 39 | -using CleanUpFunction = std::function<void() noexcept>; | 39 | +using CleanUpFunction = std::function<void()>; |
| 40 | 40 | ||
| 41 | /** | 41 | /** |
| 42 | * @brief Ensures that a cleanup function is called at the end of the current scope. | 42 | * @brief Ensures that a cleanup function is called at the end of the current scope. |