Skip to content

Commit

Permalink
C++1z -> C++17 (#248)
Browse files Browse the repository at this point in the history
I happened to see a C++1z while writing #247. Since it's 2022, I figured I'd quickly switch it out for C++17--and make sure it passed the test suite.
  • Loading branch information
cpsauer authored Jan 25, 2022
1 parent 5be5ea4 commit 4202d5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ cc_test(
srcs = ["pfr_test.cc"],
copts = select({
":windows": ["/std:c++17"],
"//conditions:default": ["-std=c++1z"],
"//conditions:default": ["-std=c++17"],
}),
deps = [
"@boost//:pfr",
Expand Down

0 comments on commit 4202d5f

Please sign in to comment.