diff options
| -rw-r--r-- | lldb/source/Symbol/ClangASTImporter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Symbol/ClangASTImporter.cpp b/lldb/source/Symbol/ClangASTImporter.cpp index 5ae31ae7e9d..ea4ccbf4e8b 100644 --- a/lldb/source/Symbol/ClangASTImporter.cpp +++ b/lldb/source/Symbol/ClangASTImporter.cpp @@ -607,7 +607,7 @@ void ClangASTImporter::Minion::InitDeportWorkQueues (std::set<clang::NamedDecl *> *decls_to_deport, std::set<clang::NamedDecl *> *decls_already_deported) { - assert(!m_decls_to_deport); // TODO make debug only + assert(!m_decls_to_deport); assert(!m_decls_already_deported); m_decls_to_deport = decls_to_deport; @@ -617,7 +617,7 @@ ClangASTImporter::Minion::InitDeportWorkQueues (std::set<clang::NamedDecl *> *de void ClangASTImporter::Minion::ExecuteDeportWorkQueues () { - assert(m_decls_to_deport); // TODO make debug only + assert(m_decls_to_deport); assert(m_decls_already_deported); ASTContextMetadataSP to_context_md = m_master.GetContextMetadata(&getToContext()); |

