-
Notifications
You must be signed in to change notification settings - Fork 682
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
Replace variable length arrays with std::vector #1662
Conversation
225da90
to
df44982
Compare
Variable Length Arrays, while widely supported as compiler extensions are not part of the C++ standard. Replaced them with std::vector.
df44982
to
6d12b6c
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #1662 +/- ##
==========================================
- Coverage 83.16% 83.16% -0.01%
==========================================
Files 277 277
Lines 48193 48193
Branches 9966 9970 +4
==========================================
- Hits 40081 40078 -3
+ Misses 7234 7220 -14
- Partials 878 895 +17
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
LGTM, with 1 minor comment.
Thank you @ol-imorozko for this contribution, much appreciated! 🙏 |
Variable Length Arrays, while widely supported as compiler extensions are not part of the C++ standard. Replaced them with std::vector.
This PR extends Dimi1010's #1661