summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-12-11 19:23:45 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-12-11 19:23:45 +0000
commitd7de23db0f325aaa1dd573739bc9e33925ebdfce (patch)
tree963554bde008d2c6a6d0dad97f852e34e2c50ec8 /libs
parent70b75d656ef0053206e0d7ebad7483f4f6993f68 (diff)
added comment
git-svn-id: svn://localhost/ardour2/branches/3.0@6352 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/pbd/pbd/closure.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/pbd/pbd/closure.h b/libs/pbd/pbd/closure.h
index 4151a347d2..2945e965c3 100644
--- a/libs/pbd/pbd/closure.h
+++ b/libs/pbd/pbd/closure.h
@@ -154,7 +154,7 @@ Closure closure (T& t, void (T::*m)(A1,A2), A1 a1, A2 a2) { return Closure (new
template<typename T, typename A1, typename A2, typename A3>
Closure closure (T& t, void (T::*m)(A1, A2, A3), A1 a1, A2 a2, A3 a3) { return Closure (new ClosureImpl3<T,A1,A2,A3>(t,m , a1, a2, a3)); }
-/*---------*/
+/*--- CALL TIME CLOSURES : these accept arguments at run time */
template<typename A>
struct CTClosureBaseImpl : ClosureBaseImpl {