diff --git a/Function.hpp b/Function.hpp index 47209ea..df22778 100644 --- a/Function.hpp +++ b/Function.hpp @@ -32,7 +32,7 @@ private: virtual ~callable() override {} }; - std::unique_ptr _fun; + std::unique_ptr _fun; public: Function() {} @@ -49,4 +49,4 @@ public: operator bool() const { return static_cast(_fun); } -}; \ No newline at end of file +};