[Lldb-commits] [lldb] r375187 - [lldb][NFC] Fix typo in DWARFASTParserClang.cpp
Raphael Isemann via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 17 16:11:33 PDT 2019
Author: teemperor
Date: Thu Oct 17 16:11:32 2019
New Revision: 375187
URL: http://llvm.org/viewvc/llvm-project?rev=375187&view=rev
Log:
[lldb][NFC] Fix typo in DWARFASTParserClang.cpp
Modified:
lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp?rev=375187&r1=375186&r2=375187&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp (original)
+++ lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp Thu Oct 17 16:11:32 2019
@@ -1007,8 +1007,8 @@ TypeSP DWARFASTParserClang::ParseTypeFro
is_attr_used, attrs.is_artificial);
type_handled = cxx_method_decl != NULL;
- // Artificial methods are always handled even when don't
- // create a new declaration for them.
+ // Artificial methods are always handled even when we
+ // don't create a new declaration for them.
type_handled |= attrs.is_artificial;
if (cxx_method_decl) {
More information about the lldb-commits
mailing list