-
Notifications
You must be signed in to change notification settings - Fork 440
set standard in ps1 files #15916
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: prepare-for-v3.0.0
Are you sure you want to change the base?
set standard in ps1 files #15916
Conversation
Summary of ChangesHello @scotthart, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request standardizes the C++ version used in the Windows build configurations by explicitly setting the C++ standard to C++17. This ensures consistency across different build environments and prevents potential compilation issues arising from varying C++ standard interpretations. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request updates the Windows CI build scripts to explicitly set the C++ standard to C++17. However, the repository's style guide specifies C++14 as the minimum supported version. To maintain C++14 compatibility and prevent the accidental introduction of newer language features, I've recommended setting the standard to C++14 in the build scripts to align with the documented minimum version.
| "-DVCPKG_OVERLAY_TRIPLETS=${project_root}/ci/kokoro/windows/triplets", | ||
| "-DCMAKE_C_COMPILER=cl.exe", | ||
| "-DCMAKE_CXX_COMPILER=cl.exe", | ||
| "-DCMAKE_CXX_STANDARD=17", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The repository style guide indicates that C++14 is the minimum supported standard. To ensure the codebase remains compatible with C++14, it's preferable to enforce this standard in the CI builds. Setting it to C++17 could allow features that are not C++14 compatible to be merged.
"-DCMAKE_CXX_STANDARD=14",
References
- The repository style guide (line 6) states that C++14 is the minimum supported C++ standard version. This change should align with that by setting the standard to 14, not 17, to enforce compatibility. (link)
| "-DVCPKG_TARGET_TRIPLET=${env:VCPKG_TRIPLET}", | ||
| "-DCMAKE_CXX_COMPILER=cl.exe" | ||
| "-DCMAKE_CXX_COMPILER=cl.exe", | ||
| "-DCMAKE_CXX_STANDARD=17" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The repository style guide indicates that C++14 is the minimum supported standard. To ensure the codebase remains compatible with C++14, it's preferable to enforce this standard in the CI builds. Setting it to C++17 could allow features that are not C++14 compatible to be merged.
"-DCMAKE_CXX_STANDARD=14"
References
- The repository style guide (line 6) states that C++14 is the minimum supported C++ standard version. This change should align with that by setting the standard to 14, not 17, to enforce compatibility. (link)
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## prepare-for-v3.0.0 #15916 +/- ##
===================================================
Coverage 92.87% 92.88%
===================================================
Files 2343 2343
Lines 216117 216117
===================================================
+ Hits 200719 200730 +11
+ Misses 15398 15387 -11 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
No description provided.