From 5f463d5f6b3e9fc08e3b1c232de8e930d5b27c55 Mon Sep 17 00:00:00 2001 From: orignal Date: Wed, 9 Nov 2016 10:16:37 -0500 Subject: [PATCH] rollback --- Log.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Log.h b/Log.h index 26390634..a6fc2222 100644 --- a/Log.h +++ b/Log.h @@ -152,14 +152,14 @@ namespace log { /** internal usage only -- folding args array to single string */ template -void LogPrint (std::stringstream& s, TValue&& arg) +void LogPrint (std::stringstream& s, TValue&& arg) noexcept { s << std::forward(arg); } /** internal usage only -- folding args array to single string */ template -void LogPrint (std::stringstream& s, TValue&& arg, TArgs&&... args) +void LogPrint (std::stringstream& s, TValue&& arg, TArgs&&... args) noexcept { LogPrint (s, std::forward(arg)); LogPrint (s, std::forward(args)...); @@ -171,7 +171,7 @@ void LogPrint (std::stringstream& s, TValue&& arg, TArgs&&... args) * @param args Array of message parts */ template -void LogPrint (LogLevel level, TArgs&&... args) +void LogPrint (LogLevel level, TArgs&&... args) noexcept { i2p::log::Log &log = i2p::log::Logger(); if (level > log.GetLogLevel ())