diff options
author | Shauren <shauren.trinity@gmail.com> | 2017-03-04 18:44:13 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2017-03-04 18:46:18 +0100 |
commit | b8db320bf14e327bcd12279871b914d8635ef122 (patch) | |
tree | f9e1018ff8f1b4423264a4c11e087c296f36864b /src/common/Threading/ProcessPriority.h | |
parent | 61829e269e31d58161614e745a24c12972ec8e97 (diff) |
Core/Misc: Prefix all preprocessor defines from CompilerDefs with TRINITY_ to avoid conflicts (PLATFORM_WINDOWS is used/defined by CascLib)
Diffstat (limited to 'src/common/Threading/ProcessPriority.h')
-rw-r--r-- | src/common/Threading/ProcessPriority.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/common/Threading/ProcessPriority.h b/src/common/Threading/ProcessPriority.h index 65332c6dff3..b4ff3f5ecf6 100644 --- a/src/common/Threading/ProcessPriority.h +++ b/src/common/Threading/ProcessPriority.h @@ -28,11 +28,6 @@ void SetProcessPriority(const std::string& logChannel) { -// Suppresses Mac OS X Warning since logChannel isn't used. -#if PLATFORM_APPLE - (void)logChannel; -#endif - #if defined(_WIN32) || defined(__linux__) ///- Handle affinity for multiple processors and process priority @@ -99,6 +94,9 @@ void SetProcessPriority(const std::string& logChannel) } #endif +#else + // Suppresses unused argument warning for all other platforms + (void)logChannel; #endif } |