From dd4283b7c188c89189e9f167c9e8b5c95ed5f8f7 Mon Sep 17 00:00:00 2001 From: Kill Your TV Date: Thu, 6 Nov 2014 00:54:34 +0000 Subject: [PATCH] Revert "fixed typo" and "fixed crash for Windows" This reverts commits c8a80a497d6b7f0f98841b72febb0dba9fabec28 and f7791e5289ef61860e0fca024f86c31e448982f1 This didn't actually fix Windows crash problem. In fact, it still crashed without --log=0 being set. Changes to the i2pd.vcxproj file fixed the crashes with VS 2013 > update 1. i2pd now works with VS 2013 Update 3 and Update 4 RC. Since these changes didn't have the intended effect, let's remove them. --- Log.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/Log.cpp b/Log.cpp index ca1cb3d2..10bf42ad 100644 --- a/Log.cpp +++ b/Log.cpp @@ -20,11 +20,8 @@ void LogMsg::Process() void Log::Flush () { -#ifndef _WIN32 if (m_LogFile) m_LogFile->flush(); -#endif -// TODO: find out what's wrong with flush for Windows } void Log::SetLogFile (const std::string& fullFilePath)