Skip to content

Commit

Permalink
Use /std:c++latest on msvc for now
Browse files Browse the repository at this point in the history
Since it doesn't support c++23
  • Loading branch information
knatten committed Sep 19, 2024
1 parent b756a09 commit a857125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quiz/templatetags/quiz_extras.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def compiler_explorer_link(question):
},
"msvc": {
"compiler": "vcpp_v19_latest_x64",
"options": f"/std:{settings.CPP_STD.lower()} /W4 /wd4100 /wd4101 /wd4189"
"options": f"/std:c++latest /W4 /wd4100 /wd4101 /wd4189"
},
}

Expand Down

0 comments on commit a857125

Please sign in to comment.