summaryrefslogtreecommitdiffstats
path: root/lldb
diff options
context:
space:
mode:
authorAlex Langford <apl@fb.com>2019-05-24 21:27:37 +0000
committerAlex Langford <apl@fb.com>2019-05-24 21:27:37 +0000
commitb77a60ce40d05592d67980df4dd180c57b8fec97 (patch)
tree3c0ce5f83524e318828254e5596c734093ade1c9 /lldb
parent7c67dec9b80a3ddcdaa881a744740e35fa7abcb7 (diff)
downloadbcm5719-llvm-b77a60ce40d05592d67980df4dd180c57b8fec97.tar.gz
bcm5719-llvm-b77a60ce40d05592d67980df4dd180c57b8fec97.zip
[Target] Make Processes' GetLanguageRuntime non-virtual
llvm-svn: 361673
Diffstat (limited to 'lldb')
-rw-r--r--lldb/include/lldb/Target/Process.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/lldb/include/lldb/Target/Process.h b/lldb/include/lldb/Target/Process.h
index b98975cbe36..90118c87b2f 100644
--- a/lldb/include/lldb/Target/Process.h
+++ b/lldb/include/lldb/Target/Process.h
@@ -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);
OpenPOWER on IntegriCloud