[Lldb-commits] [lldb] r334006 - Fix windows build broken by r334004

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Tue Jun 5 03:49:56 PDT 2018


Author: labath
Date: Tue Jun  5 03:49:56 2018
New Revision: 334006

URL: http://llvm.org/viewvc/llvm-project?rev=334006&view=rev
Log:
Fix windows build broken by r334004

The problem was a link error due to a missing =0 on an abstract method.
Interestingly, this was not a problem for clang/linux.

Modified:
    lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFIndex.h

Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFIndex.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFIndex.h?rev=334006&r1=334005&r2=334006&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFIndex.h (original)
+++ lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFIndex.h Tue Jun  5 03:49:56 2018
@@ -39,7 +39,7 @@ public:
   virtual void GetFunctions(ConstString name, DWARFDebugInfo &info,
                             const CompilerDeclContext &parent_decl_ctx,
                             uint32_t name_type_mask,
-                            std::vector<DWARFDIE> &dies);
+                            std::vector<DWARFDIE> &dies) = 0;
   virtual void GetFunctions(
       const RegularExpression &regex, DWARFDebugInfo &info,
       llvm::function_ref<bool(const DWARFDIE &die, bool include_inlines,




More information about the lldb-commits mailing list