Skip to content

Commit ac92664

Browse files
committed
fix
1 parent 22e6d23 commit ac92664

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/pecos-quest/build_quest.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,8 @@ fn build_cxx_bridge(quest_dir: &Path) {
208208
.define("COMPILE_CUQUANTUM", "0");
209209
}
210210

211-
// Use C++17 standard (QuEST v4 requirement)
212-
build.std("c++17");
211+
// Use C++20 standard (QuEST v4 uses designated initializers which require C++20)
212+
build.std("c++20");
213213

214214
// Report ccache/sccache configuration
215215
report_cache_config();

0 commit comments

Comments
 (0)