-
Notifications
You must be signed in to change notification settings - Fork 13
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
Remove gcc warning #321
base: main
Are you sure you want to change the base?
Remove gcc warning #321
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #321 +/- ##
==========================================
- Coverage 91.82% 91.67% -0.15%
==========================================
Files 77 78 +1
Lines 5796 5805 +9
==========================================
Hits 5322 5322
- Misses 474 483 +9
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.
I moved the implementation code to a cpp file. This can be discussed. For performance reason, inlining could be preferable.
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.
Why that change? I don't have any strong opinion about it, but if we keep a cpp file, then the existing src/run_encoded_layout.cpp should be merged with it.
@@ -46,7 +46,7 @@ namespace sparrow | |||
/** | |||
* Constructs an empty array. | |||
*/ | |||
SPARROW_API array() = default; | |||
array() = default; |
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.
Why this change?Are default members considered as inline on Windows?
No description provided.