[Lldb-commits] [lldb] r247195 - Remove Target::GetBasicType()
Enrico Granata via lldb-commits
lldb-commits at lists.llvm.org
Wed Sep 9 15:00:18 PDT 2015
Author: enrico
Date: Wed Sep 9 17:00:18 2015
New Revision: 247195
URL: http://llvm.org/viewvc/llvm-project?rev=247195&view=rev
Log:
Remove Target::GetBasicType()
I was experimenting with it briefly, and then settled on Target::GetTypeSystem + TypeSystem::GetBasicType, so this API is not necessary to have
Thanks to Ryan Brown for bringing it to my attention
Modified:
lldb/trunk/include/lldb/Target/Target.h
Modified: lldb/trunk/include/lldb/Target/Target.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Target/Target.h?rev=247195&r1=247194&r2=247195&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Target/Target.h (original)
+++ lldb/trunk/include/lldb/Target/Target.h Wed Sep 9 17:00:18 2015
@@ -1233,11 +1233,6 @@ public:
TypeSystem*
GetTypeSystemForLanguage (lldb::LanguageType language);
- CompilerType
- GetBasicType (lldb::LanguageType language,
- lldb::BasicType basic_type,
- size_t size = 0);
-
ClangASTImporter *
GetClangASTImporter();
More information about the lldb-commits
mailing list