Skip to content

Commit 65eb260

Browse files
committed
Raise C++ standard for 'pineappl_fastnlo'
1 parent 1dde441 commit 65eb260

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pineappl_fastnlo/build.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ fn main() {
6565
.file("src/fastnlo.cpp")
6666
.include(fnlo_include_path.trim())
6767
.includes(lhapdf_include_paths)
68-
.std("c++11") // apparently not supported by MSVC, but fastNLO probably can't be compiled on Windows
68+
// TODO: find a way to compile with the same standard that fastNLO was compiled with
69+
.std("c++17")
6970
.compile("fnlo-bridge");
7071

7172
println!("cargo:rerun-if-changed=src/lib.rs");

0 commit comments

Comments
 (0)