From 92b8c38d77a63052cad5466e8b8fddbd4a820b34 Mon Sep 17 00:00:00 2001
From: Christoph Lehmann <christoph.lehmann@ufz.de>
Date: Mon, 25 Jul 2016 14:13:16 +0200
Subject: [PATCH] [BL] added missing )

---
 BaseLib/Functional.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/BaseLib/Functional.h b/BaseLib/Functional.h
index daa1c0483ec..4553dc09a34 100644
--- a/BaseLib/Functional.h
+++ b/BaseLib/Functional.h
@@ -155,7 +155,7 @@ struct FunctionTraits<ReturnType (Object::*)(Args...) const> {
  *
  * auto f_bind = std::function<ReturnType(Arg1, Arg2, Arg3>(
  *                  std::bind(&Object::methodWithThreeArguments,
- *                      std::ref(some_object), _1, _2, _3);
+ *                      std::ref(some_object), _1, _2, _3));
  *
  * auto f_easy = easyBind(&Object::methodWithThreeArguments, some_object);
  * \endcode
-- 
GitLab