aboutsummaryrefslogtreecommitdiff
path: root/src/DI/function_wrapper.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/DI/function_wrapper.hpp')
-rw-r--r--src/DI/function_wrapper.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DI/function_wrapper.hpp b/src/DI/function_wrapper.hpp
index e4b6779..716668c 100644
--- a/src/DI/function_wrapper.hpp
+++ b/src/DI/function_wrapper.hpp
@@ -9,7 +9,7 @@ template <class Interface>
class FunctionWrapper : public IWrapper<Interface>
{
public:
- explicit FunctionWrapper(Interface func) : _func(func) {}
+ explicit FunctionWrapper(Interface func) noexcept;
[[nodiscard]] Interface get() const;