From: Jan Korous Date: Wed, 4 Apr 2018 19:58:48 +0000 (+0000) Subject: [analyzer][test] Set C++14 as language standard for test depending on new X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=195459d046e795f5952f7d2121e505eeb59c5574;p=clang [analyzer][test] Set C++14 as language standard for test depending on new features git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@329225 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Analysis/missing-bind-temporary.cpp b/test/Analysis/missing-bind-temporary.cpp index 010c42e0ff..6071f5b5fa 100644 --- a/test/Analysis/missing-bind-temporary.cpp +++ b/test/Analysis/missing-bind-temporary.cpp @@ -1,4 +1,4 @@ -// RUN: %clang_analyze_cc1 -triple x86_64-unknown-linux -analyzer-checker=debug.DumpCFG %s > %t 2>&1 +// RUN: %clang_analyze_cc1 -triple x86_64-unknown-linux -analyzer-checker=debug.DumpCFG -std=c++14 %s > %t 2>&1 // RUN: FileCheck --input-file=%t %s // RUN: %clang_analyze_cc1 -triple x86_64-unknown-linux -analyzer-checker=core,debug.ExprInspection -std=c++14 -verify %s