From efa67b3d6e862df75bc7235e48bb12ef607cf0d3 Mon Sep 17 00:00:00 2001 From: Mihail Mihov Date: Thu, 12 Sep 2024 00:20:50 +0200 Subject: [PATCH] Run tests with c++14 --- test/lit.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lit.cfg b/test/lit.cfg index 484a84e48..afe312970 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -263,7 +263,7 @@ flags = ' -Xclang -add-plugin -Xclang clad -Xclang \ config.substitutions.append( ('%cladclang_cuda', config.clang + ' -std=c++17' + flags) ) -config.substitutions.append( ('%cladclang', config.clang + '++ -DCLAD_NO_NUM_DIFF ' + ' -std=c++11' + flags) ) +config.substitutions.append( ('%cladclang', config.clang + '++ -DCLAD_NO_NUM_DIFF ' + ' -std=c++14' + flags) ) config.substitutions.append( ('%cladlib', config.cladlib) )