diff --git a/tuple.hpp b/tuple.hpp index ad15b6c2..375250e7 100644 --- a/tuple.hpp +++ b/tuple.hpp @@ -176,16 +176,14 @@ namespace util::tuple { /// debug/release/whatever builds. so it is safe to use to guarantee /// parameter evaluation. inline void - ignore (void) + ignore (void) noexcept { ; } //------------------------------------------------------------------------- template void - ignore (T, Args ...args) - { - ignore (std::forward (args)...); - }; + ignore (T, const Args&...) noexcept + { ; } ///////////////////////////////////////////////////////////////////////////