From: NAKAMURA Takumi Date: Thu, 13 Apr 2017 00:17:28 +0000 (+0000) Subject: ExternalASTMerger.cpp: Silence another warning. [-Wunused-lambda-capture] X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=855a7eedb923967c6c080aa8100d40b2437475dd;p=clang ExternalASTMerger.cpp: Silence another warning. [-Wunused-lambda-capture] git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@300145 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AST/ExternalASTMerger.cpp b/lib/AST/ExternalASTMerger.cpp index 2761eb4629..2d4d0185ff 100644 --- a/lib/AST/ExternalASTMerger.cpp +++ b/lib/AST/ExternalASTMerger.cpp @@ -178,6 +178,7 @@ void ExternalASTMerger::FindExternalLexicalDecls( IP.Forward->Import(const_cast(SourceDecl)); assert(ImportedDecl->getDeclContext() == DC); (void)ImportedDecl; + (void)DC; } } });