summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2022-05-31 17:24:51 +0200
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2022-05-31 17:24:51 +0200
commit12cab9493107f8c65da1bccc1a4b3961b51c6fe3 (patch)
tree7ef47474f4093c40af0a33cf225e32d420ea0756
parent560f800e45329ad55b1f5b0a05a80ad63164da48 (diff)
downloadsigc++-12cab9493107f8c65da1bccc1a4b3961b51c6fe3.tar.gz
test_accumulated.cc: clang++ requires another 'template'
-rw-r--r--tests/test_accumulated.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_accumulated.cc b/tests/test_accumulated.cc
index 39122b5..7fa81cc 100644
--- a/tests/test_accumulated.cc
+++ b/tests/test_accumulated.cc
@@ -83,7 +83,7 @@ template<typename T_signal>
void
test_mean()
{
- typename T_signal::accumulated<arithmetic_mean_accumulator> sig;
+ typename T_signal::template accumulated<arithmetic_mean_accumulator> sig;
A a;
sig.connect(sigc::ptr_fun(&foo));