Skip to content

Commit c7e696a

Browse files
joseph-isaacs0ax1
andauthored
chore[vortex-duckdb]: allow C++ 20 ext syntax (#3884)
Signed-off-by: Joe Isaacs <[email protected]> Co-authored-by: Alexander Droste <[email protected]>
1 parent ced09d9 commit c7e696a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

vortex-duckdb/build.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,8 @@ fn main() {
204204
.flag("-Wpedantic")
205205
// Allow C++20 designator syntax even with C++17 std
206206
.flag("-Wno-c++20-designator")
207+
// Enable C++20 extensions
208+
.flag("-Wno-c++20-extensions")
207209
// Unused parameter warnings are disabled as we include DuckDB
208210
// headers with implementations that have unused parameters.
209211
.flag("-Wno-unused-parameter")

0 commit comments

Comments
 (0)