diff options
Diffstat (limited to 'include/lldb/Target/Language.h')
-rw-r--r-- | include/lldb/Target/Language.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/include/lldb/Target/Language.h b/include/lldb/Target/Language.h index 6ea6029bdace0..b49e96eeac172 100644 --- a/include/lldb/Target/Language.h +++ b/include/lldb/Target/Language.h @@ -20,6 +20,7 @@ #include "lldb/DataFormatters/DumpValueObjectOptions.h" #include "lldb/DataFormatters/FormatClasses.h" #include "lldb/DataFormatters/StringPrinter.h" +#include "lldb/Symbol/TypeSystem.h" #include "lldb/lldb-private.h" #include "lldb/lldb-public.h" @@ -266,12 +267,9 @@ public: static std::set<lldb::LanguageType> GetSupportedLanguages(); - static void GetLanguagesSupportingTypeSystems( - std::set<lldb::LanguageType> &languages, - std::set<lldb::LanguageType> &languages_for_expressions); - - static void - GetLanguagesSupportingREPLs(std::set<lldb::LanguageType> &languages); + static LanguageSet GetLanguagesSupportingTypeSystems(); + static LanguageSet GetLanguagesSupportingTypeSystemsForExpressions(); + static LanguageSet GetLanguagesSupportingREPLs(); protected: // Classes that inherit from Language can see and modify these |