summaryrefslogtreecommitdiff
path: root/tests/teststops.cpp
diff options
context:
space:
mode:
authorMarcus Tomlinson <themarcustomlinson@gmail.com>2019-02-24 17:58:43 +0000
committerMarcus Tomlinson <themarcustomlinson@gmail.com>2019-02-24 17:58:43 +0000
commit03599c1281835f886e98da7d15244075ec88913f (patch)
tree56bcc4e6ecf725bc6e1c251e4787d185b2424533 /tests/teststops.cpp
parent70250813b7619de9f702b1106ea086941a5ba153 (diff)
Check for '#if defined( WIN32 )' in test apps
Diffstat (limited to 'tests/teststops.cpp')
-rw-r--r--tests/teststops.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/teststops.cpp b/tests/teststops.cpp
index 6159b88..0b85b48 100644
--- a/tests/teststops.cpp
+++ b/tests/teststops.cpp
@@ -21,7 +21,7 @@
#define REPETITIONS 10
// Platform-dependent sleep routines.
-#if defined( __WINDOWS_ASIO__ ) || defined( __WINDOWS_DS__ ) || defined( __WINDOWS_WASAPI__ )
+#if defined( WIN32 )
#include <windows.h>
#define SLEEP( milliseconds ) Sleep( (DWORD) milliseconds )
#else // Unix variants