Author: chapuni
Date: Mon Jan 21 08:15:24 2013
New Revision: 173041

URL: http://llvm.org/viewvc/llvm-project?rev=173041&view=rev
Log:
AST/VTableBuilder.h: Suppress a warning. [-Wunused-private-field]

Modified:
    cfe/trunk/include/clang/AST/VTableBuilder.h

Modified: cfe/trunk/include/clang/AST/VTableBuilder.h
URL: 
http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/AST/VTableBuilder.h?rev=173041&r1=173040&r2=173041&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/VTableBuilder.h (original)
+++ cfe/trunk/include/clang/AST/VTableBuilder.h Mon Jan 21 08:15:24 2013
@@ -256,6 +256,7 @@
 
     uint64_t AddressPoint = AddressPoints.lookup(Base);
     assert(AddressPoint != 0 || IsMicrosoftABI);
+    (void)IsMicrosoftABI;
 
     return AddressPoint;
   }


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to