From 52dca2ac50853b81a9d243d02b164705b5a9da93 Mon Sep 17 00:00:00 2001 From: Tom Date: Wed, 2 Oct 2019 16:59:22 +0200 Subject: [PATCH] use `typename` for template parameters --- include/sgnl/AtomicCondition.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/sgnl/AtomicCondition.h b/include/sgnl/AtomicCondition.h index 80ed484..b4b9943 100644 --- a/include/sgnl/AtomicCondition.h +++ b/include/sgnl/AtomicCondition.h @@ -42,7 +42,7 @@ public: this->condvar_.notify_all(); } - template + template void wait_for(const std::chrono::duration& time, ValueType val) const { @@ -53,7 +53,7 @@ public: return; } - template + template void wait_for(const std::chrono::duration& time, Predicate pred) const {