diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2018-05-30 22:14:17 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2018-05-30 22:14:17 +0000 |
commit | e2a20b1b29158b8a91a2a4c303cd3d1c87eef356 (patch) | |
tree | bc7ba8adbf68b23d06cd70e8fa3b641e9f134317 | |
parent | e4899c16480dfb06a0265274d0b5b0fe3b370b8a (diff) | |
download | bcm5719-llvm-e2a20b1b29158b8a91a2a4c303cd3d1c87eef356.tar.gz bcm5719-llvm-e2a20b1b29158b8a91a2a4c303cd3d1c87eef356.zip |
AST: Remove an unused ctor. NFC.
llvm-svn: 333600
-rw-r--r-- | clang/include/clang/AST/VTableBuilder.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/clang/include/clang/AST/VTableBuilder.h b/clang/include/clang/AST/VTableBuilder.h index f2eff8a3d62..64310391614 100644 --- a/clang/include/clang/AST/VTableBuilder.h +++ b/clang/include/clang/AST/VTableBuilder.h @@ -222,9 +222,6 @@ private: return static_cast<uintptr_t>(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. |