diff options
| author | Tillmann Karras <tilkax@gmail.com> | 2015-02-22 20:08:28 +0100 |
|---|---|---|
| committer | Tillmann Karras <tilkax@gmail.com> | 2015-02-22 20:08:28 +0100 |
| commit | 8d19f62b697f1fff9dd78010f67ae375de770dac (patch) | |
| tree | c9738a96b7a6d86ac8258a0d0264722bdd5e3cc1 /Source | |
| parent | c54a8c54fb97aab9b866f11525fffa5516cfa4e3 (diff) | |
Fix -Wmissing-variable-declarations warning
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/Core/Core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index 2095028aa5..47fe6de856 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -106,7 +106,7 @@ static int s_pause_and_lock_depth = 0; static bool s_is_framelimiter_temp_disabled = false; #ifdef ThreadLocalStorage -ThreadLocalStorage bool tls_is_cpu_thread = false; +static ThreadLocalStorage bool tls_is_cpu_thread = false; #else static pthread_key_t s_tls_is_cpu_key; static pthread_once_t s_cpu_key_is_init = PTHREAD_ONCE_INIT; |
