From abbbbfc8bd92ba3321bfb11ac7b4a3fb34200aa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kjist=C3=B3f?= Date: Sun, 27 Nov 2016 14:20:02 +0100 Subject: [PATCH] added missing template arguments to std::unique_ptr declaration --- Function.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +};