r333598 - AST: Remove an unused function. NFC.

Peter Collingbourne via cfe-commits cfe-commits at lists.llvm.org
Wed May 30 15:10:07 PDT 2018


Author: pcc
Date: Wed May 30 15:10:07 2018
New Revision: 333598

URL: http://llvm.org/viewvc/llvm-project?rev=333598&view=rev
Log:
AST: Remove an unused function. NFC.

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=333598&r1=333597&r2=333598&view=diff
==============================================================================
--- cfe/trunk/include/clang/AST/VTableBuilder.h (original)
+++ cfe/trunk/include/clang/AST/VTableBuilder.h Wed May 30 15:10:07 2018
@@ -93,10 +93,6 @@ public:
                            reinterpret_cast<uintptr_t>(MD));
   }
 
-  static VTableComponent getFromOpaqueInteger(uint64_t I) {
-    return VTableComponent(I);
-  }
-
   /// Get the kind of this vtable component.
   Kind getKind() const {
     return (Kind)(Value & 0x7);




More information about the cfe-commits mailing list