From a6b15a7a2dc8eb856eae99b0211c3eabc9d3e405 Mon Sep 17 00:00:00 2001 From: Peter Collingbourne Date: Wed, 30 May 2018 22:14:17 +0000 Subject: [PATCH] AST: Remove an unused ctor. NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@333600 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/AST/VTableBuilder.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/include/clang/AST/VTableBuilder.h b/include/clang/AST/VTableBuilder.h index f2eff8a3d6..6431039161 100644 --- a/include/clang/AST/VTableBuilder.h +++ b/include/clang/AST/VTableBuilder.h @@ -222,9 +222,6 @@ private: return static_cast(Value & ~7ULL); } - explicit VTableComponent(uint64_t Value) - : Value(Value) { } - /// The kind is stored in the lower 3 bits of the value. For offsets, we /// make use of the facts that classes can't be larger than 2^55 bytes, /// so we store the offset in the lower part of the 61 bits that remain. -- 2.50.1