forked from OSchip/llvm-project
[Target] Make Processes' GetLanguageRuntime non-virtual
llvm-svn: 361673
This commit is contained in:
parent
7c67dec9b8
commit
b77a60ce40
|
@ -2178,13 +2178,12 @@ public:
|
|||
|
||||
OperatingSystem *GetOperatingSystem() { return m_os_up.get(); }
|
||||
|
||||
virtual LanguageRuntime *GetLanguageRuntime(lldb::LanguageType language,
|
||||
bool retry_if_null = true);
|
||||
LanguageRuntime *GetLanguageRuntime(lldb::LanguageType language,
|
||||
bool retry_if_null = true);
|
||||
|
||||
virtual CPPLanguageRuntime *GetCPPLanguageRuntime(bool retry_if_null = true);
|
||||
CPPLanguageRuntime *GetCPPLanguageRuntime(bool retry_if_null = true);
|
||||
|
||||
virtual ObjCLanguageRuntime *
|
||||
GetObjCLanguageRuntime(bool retry_if_null = true);
|
||||
ObjCLanguageRuntime *GetObjCLanguageRuntime(bool retry_if_null = true);
|
||||
|
||||
bool IsPossibleDynamicValue(ValueObject &in_value);
|
||||
|
||||
|
|
Loading…
Reference in New Issue