summaryrefslogtreecommitdiff
path: root/src/log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/log.cpp')
-rw-r--r--src/log.cpp13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/log.cpp b/src/log.cpp
index 0da9a272..a147c107 100644
--- a/src/log.cpp
+++ b/src/log.cpp
@@ -19,23 +19,20 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <iostream>
-#include <sstream>
-
-#include <stdio.h>
-#include <stdarg.h>
-
#include "log.h"
#ifdef WIN32
#include <windows.h>
#elif __APPLE__
#include <Carbon/Carbon.h>
-#elif __linux__ || __linux
-#include <stdlib.h>
#endif
#include <sys/time.h>
+#include <iostream>
+#include <sstream>
+#include <stdarg.h>
+#include <stdio.h>
+#include <stdlib.h>
Logger::Logger():
mLogToStandardOut(true)