From 9b034293fa5d2dfdaa4dd894b88ce859f9042954 Mon Sep 17 00:00:00 2001 From: Raphael Isemann Date: Mon, 30 Sep 2019 13:08:08 +0000 Subject: [PATCH] [lldb][NFC][modern-type-lookup] Remove while(false) behind if() {} This was originally a 'do { ... } while (false);' like in the rest of the function, but the do was refactored into an 'if' without also removing the trailing 'while(false);' llvm-svn: 373206 --- lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp b/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp index 0270106..9d34f69 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp +++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp @@ -129,8 +129,6 @@ void ClangASTSource::InstallASTContext(clang::ASTContext &ast_context, *scratch_ast_context->getFileManager(), scratch_ast_context->GetOriginMap()}); } - while (false) - ; m_merger_up = std::make_unique(target, sources); -- 2.7.4