-
Notifications
You must be signed in to change notification settings - Fork 6
feat: Use install-boost
instead of install-outcome
and install-quickcpplib
.
#62
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: main
Are you sure you want to change the base?
Changes from all commits
8243ff7
ee2664b
15a669a
23bae4e
9497510
3047723
aa60263
c0208ac
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -1,7 +1,7 @@ | ||||||||||
# Lock to v19.x until we can upgrade our code to fix new v20 issues. | ||||||||||
clang-format~=19.1 | ||||||||||
clang-format>=20.1.0 | ||||||||||
# Lock to v19.x until we can upgrade our code to fix new v20 issues. | ||||||||||
clang-tidy~=19.1 | ||||||||||
clang-tidy>=19.1.0 | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Align comment with clang-tidy requirement. The comment above line 4 still mentions locking to v19.x, yet the version constraint permits clang-tidy >=19.1.0. Please update or remove that comment to match the new minimum version. For example: -# Lock to v19.x until we can upgrade our code to fix new v20 issues.
+# Allow clang-tidy >=19.1.0; update code to satisfy newer lint checks. 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents
|
||||||||||
colorama>=0.4.6 | ||||||||||
gersemi>=0.16.2 | ||||||||||
yamllint>=1.35.1 |
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.
🛠️ Refactor suggestion
Update comment to reflect new clang-format constraint.
The comment immediately above line 2 still reads “Lock to v19.x until we can upgrade our code to fix new v20 issues.” but the requirement now allows clang-format >=20.1.0. Please update or remove the comment so it accurately describes the policy. For example:
📝 Committable suggestion
🤖 Prompt for AI Agents