aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2013-01-21 14:15:24 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2013-01-21 14:15:24 +0000
commit6de6aab8248ef67d3a65018d4ad26f51ac35b3d3 (patch)
treeb906a0efc96d260f7d9c6fc753ca8763cc267be0
parent3a3408cceb438af7cdebb5b3d938abb916162bb4 (diff)
AST/VTableBuilder.h: Suppress a warning. [-Wunused-private-field]
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173041 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/AST/VTableBuilder.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/AST/VTableBuilder.h b/include/clang/AST/VTableBuilder.h
index ac71441aed..bcbe8754ea 100644
--- a/include/clang/AST/VTableBuilder.h
+++ b/include/clang/AST/VTableBuilder.h
@@ -256,6 +256,7 @@ public:
uint64_t AddressPoint = AddressPoints.lookup(Base);
assert(AddressPoint != 0 || IsMicrosoftABI);
+ (void)IsMicrosoftABI;
return AddressPoint;
}