From 2e301c2919622ffc8197148631252108d9099e1a Mon Sep 17 00:00:00 2001 From: orignal Date: Tue, 8 Nov 2016 20:25:47 -0500 Subject: [PATCH] fixed VS build --- Log.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Log.h b/Log.h index a6fc2222..26390634 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) noexcept +void LogPrint (std::stringstream& s, TValue&& arg) { s << std::forward(arg); } /** internal usage only -- folding args array to single string */ template -void LogPrint (std::stringstream& s, TValue&& arg, TArgs&&... args) noexcept +void LogPrint (std::stringstream& s, TValue&& arg, TArgs&&... args) { LogPrint (s, std::forward(arg)); LogPrint (s, std::forward(args)...); @@ -171,7 +171,7 @@ void LogPrint (std::stringstream& s, TValue&& arg, TArgs&&... args) noexcept * @param args Array of message parts */ template -void LogPrint (LogLevel level, TArgs&&... args) noexcept +void LogPrint (LogLevel level, TArgs&&... args) { i2p::log::Log &log = i2p::log::Logger(); if (level > log.GetLogLevel ())