[lldb][NFC] Remove unused CompilerType::IsPossibleCPlusPlusDynamicType
authorRaphael Isemann <teemperor@gmail.com>
Tue, 12 Nov 2019 09:02:59 +0000 (10:02 +0100)
committerRaphael Isemann <teemperor@gmail.com>
Tue, 12 Nov 2019 09:02:59 +0000 (10:02 +0100)
Reviewers: davide, xiaobai

Reviewed By: davide, xiaobai

Subscribers: davide, JDevlieghere, lldb-commits

Tags: #lldb

Differential Revision: https://reviews.llvm.org/D70074

lldb/include/lldb/Symbol/CompilerType.h

index bb9881c..cedd252 100644 (file)
@@ -108,11 +108,6 @@ public:
 
   bool IsPolymorphicClass() const;
 
-  bool
-  IsPossibleCPlusPlusDynamicType(CompilerType *target_type = nullptr) const {
-    return IsPossibleDynamicType(target_type, true, false);
-  }
-
   bool IsPossibleDynamicType(CompilerType *target_type, // Can pass nullptr
                              bool check_cplusplus, bool check_objc) const;