diff options
| author | Marcus Tomlinson <themarcustomlinson@gmail.com> | 2019-02-24 17:58:43 +0000 |
|---|---|---|
| committer | Marcus Tomlinson <themarcustomlinson@gmail.com> | 2019-02-24 17:58:43 +0000 |
| commit | 03599c1281835f886e98da7d15244075ec88913f (patch) | |
| tree | 56bcc4e6ecf725bc6e1c251e4787d185b2424533 /tests/record.cpp | |
| parent | 70250813b7619de9f702b1106ea086941a5ba153 (diff) | |
Check for '#if defined( WIN32 )' in test apps
Diffstat (limited to 'tests/record.cpp')
| -rw-r--r-- | tests/record.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/record.cpp b/tests/record.cpp index 0e48f77..faa9789 100644 --- a/tests/record.cpp +++ b/tests/record.cpp @@ -38,7 +38,7 @@ typedef double MY_TYPE; */ // 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 |
