diff options
Diffstat (limited to 'lldb/source/Target/Language.cpp')
-rw-r--r-- | lldb/source/Target/Language.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/source/Target/Language.cpp b/lldb/source/Target/Language.cpp index 13d843441e7..02b36519b13 100644 --- a/lldb/source/Target/Language.cpp +++ b/lldb/source/Target/Language.cpp @@ -89,6 +89,12 @@ Language::ForEach (std::function<bool(Language*)> callback) } } +bool +Language::IsTopLevelFunction (Function& function) +{ + return false; +} + lldb::TypeCategoryImplSP Language::GetFormatters () { |