diff options
Diffstat (limited to 'src/DI/function_wrapper.hpp')
-rw-r--r-- | src/DI/function_wrapper.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DI/function_wrapper.hpp b/src/DI/function_wrapper.hpp index e6468f2..b8d0cab 100644 --- a/src/DI/function_wrapper.hpp +++ b/src/DI/function_wrapper.hpp @@ -11,7 +11,7 @@ class FunctionWrapper : public IWrapper<Interface> public: explicit FunctionWrapper(Interface func) noexcept; - [[nodiscard]] Interface get() const noexcept override; + [[nodiscard]] auto get() const noexcept -> Interface override; private: const Interface _func; |