From 70eb21a5014196c76c57351c27ee56ee72ac781b Mon Sep 17 00:00:00 2001 From: Denis Blank Date: Tue, 21 Jul 2015 19:10:02 +0200 Subject: [PATCH] drop missing ; --- include/Callback.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Callback.h b/include/Callback.h index 620d7be..c946298 100644 --- a/include/Callback.h +++ b/include/Callback.h @@ -104,7 +104,7 @@ inline auto make_shared_callback(_CTy&& callback) { return std::make_shared> (std::forward>(callback)); -}; +} /// Creates a weak callback which wraps the given shared or weak callback. /// If the given managed callback expires the callback is not invoked anymore.