summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Timer.cpp
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2014-02-19 01:54:11 +0100
committerPierre Bourdon <delroth@gmail.com>2014-02-20 01:01:10 +0100
commit3f9c38d2314a259a9c34dd89bcdfab3af00a02f5 (patch)
treec95735784575741b8a5b0880ffb3b66950a940ab /Source/Core/Common/Timer.cpp
parent939df46674d5ce3803292431495e479bf6f434b5 (diff)
Fix more header sorting issues in Common/ (now check-includes clean).
Diffstat (limited to 'Source/Core/Common/Timer.cpp')
-rw-r--r--Source/Core/Common/Timer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/Timer.cpp b/Source/Core/Common/Timer.cpp
index d9299e7b49..1670e861db 100644
--- a/Source/Core/Common/Timer.cpp
+++ b/Source/Core/Common/Timer.cpp
@@ -2,13 +2,13 @@
// Licensed under GPLv2
// Refer to the license.txt file included.
-#include <ctime>
#include <cinttypes>
+#include <ctime>
#ifdef _WIN32
-#include <Windows.h>
#include <mmsystem.h>
#include <sys/timeb.h>
+#include <windows.h>
#else
#include <sys/time.h>
#endif