1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Silence clang warning: private field 'data_' is not used.

llvm-svn: 235720
This commit is contained in:
Yaron Keren 2015-04-24 15:10:15 +00:00
parent dd3765f2cf
commit 0efef2224b
2 changed files with 4 additions and 0 deletions

View File

@ -70,7 +70,9 @@ namespace llvm
/// @name Platform Dependent Data
/// @{
private:
#if defined(LLVM_ENABLE_THREADS) && LLVM_ENABLE_THREADS != 0
void* data_; ///< We don't know what the data will be
#endif
/// @}
/// @name Do Not Implement

View File

@ -70,7 +70,9 @@ namespace llvm
/// @name Platform Dependent Data
/// @{
private:
#if defined(LLVM_ENABLE_THREADS) && LLVM_ENABLE_THREADS != 0
void* data_; ///< We don't know what the data will be
#endif
/// @}
/// @name Do Not Implement