diff options
Diffstat (limited to 'src/libutil/logging.hh')
-rw-r--r-- | src/libutil/logging.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh index 5df03da74..3fbd75562 100644 --- a/src/libutil/logging.hh +++ b/src/libutil/logging.hh @@ -158,7 +158,7 @@ extern Verbosity verbosity; /* suppress msgs > this */ #define vomit(args...) printMsg(lvlVomit, args) template<typename... Args> -inline void warn(const std::string & fs, Args... args) +inline void warn(const std::string & fs, const Args & ... args) { boost::format f(fs); nop{boost::io::detail::feed(f, args)...}; |