dawn added a comment.

See inline comment.


================
Comment at: source/Symbol/ClangASTContext.cpp:9191
@@ -9189,2 +9190,3 @@
+                    continue;
                 searched.insert(it->second);
                 symbol_file->ParseDeclsForContext(CompilerDeclContext(this, 
it->second));
----------------
Minor efficiency improvement - change these 3 lines to:
                if (!searched.insert(it->second).first)
                    continue;
No need for new patch - just change in final commit.


http://reviews.llvm.org/D14542



_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to