diff options
author | Alexander Harkness <me@bearbin.net> | 2015-05-17 17:30:13 +0200 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2015-05-17 17:30:13 +0200 |
commit | 1049d5b706d4e6c29ff9f9960bca3add2c0fd817 (patch) | |
tree | 9560bd3efe7d94b9dbc68da17801d2d4a1a58207 /src | |
parent | Fixed typo. (diff) | |
download | cuberite-1049d5b706d4e6c29ff9f9960bca3add2c0fd817.tar cuberite-1049d5b706d4e6c29ff9f9960bca3add2c0fd817.tar.gz cuberite-1049d5b706d4e6c29ff9f9960bca3add2c0fd817.tar.bz2 cuberite-1049d5b706d4e6c29ff9f9960bca3add2c0fd817.tar.lz cuberite-1049d5b706d4e6c29ff9f9960bca3add2c0fd817.tar.xz cuberite-1049d5b706d4e6c29ff9f9960bca3add2c0fd817.tar.zst cuberite-1049d5b706d4e6c29ff9f9960bca3add2c0fd817.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/FastRandom.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FastRandom.cpp b/src/FastRandom.cpp index 437dc72ff..c1716f026 100644 --- a/src/FastRandom.cpp +++ b/src/FastRandom.cpp @@ -10,7 +10,7 @@ #ifdef _WIN32 #define thread_local static __declspec(thread) -#elif __APPLE__ +#elif defined __APPLE__ #define thread_local static __thread #endif |