[TSan] don't use too new __attribute__((unused)) for class member

llvm-svn: 158500
This commit is contained in:
Alexey Samsonov 2012-06-15 07:33:49 +00:00
parent 40e5128412
commit 1042454b66
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class TestData {
static const int kSize = 64;
typedef u64 T;
Mutex mtx_;
char pad_[kCacheLineSize] UNUSED;
char pad_[kCacheLineSize];
T data_[kSize];
};