From: Fariborz Jahanian Date: Wed, 13 Oct 2010 16:19:16 +0000 (+0000) Subject: Eliminates a clang warning. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7b1ec6c4781ce960e1c3157b84ebe8362df2d2a7;p=clang Eliminates a clang warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@116408 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaTemplate.cpp b/lib/Sema/SemaTemplate.cpp index 6434333fbe..3b2ca1e162 100644 --- a/lib/Sema/SemaTemplate.cpp +++ b/lib/Sema/SemaTemplate.cpp @@ -2554,6 +2554,7 @@ bool UnnamedLocalNoLinkageFinder::VisitNestedNameSpecifier( case NestedNameSpecifier::TypeSpecWithTemplate: return Visit(QualType(NNS->getAsType(), 0)); } + return false; }