diff options
Diffstat (limited to 'src/log.cpp')
-rw-r--r-- | src/log.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/log.cpp b/src/log.cpp index 435b2da0..5880e108 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -19,9 +19,6 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include <iostream> -#include <sstream> - #include "log.h" #include "gui/widgets/chattab.h" @@ -30,11 +27,12 @@ #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 <stdlib.h> Logger::Logger(): mLogToStandardOut(true), |