-
Notifications
You must be signed in to change notification settings - Fork 282
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
clang-tidy: C array to std::array conversions #2154
Conversation
Funny. This exposed bugs. |
Codecov Report
@@ Coverage Diff @@
## main #2154 +/- ##
=======================================
Coverage 62.65% 62.65%
=======================================
Files 97 97
Lines 19722 19721 -1
Branches 9710 9710
=======================================
Hits 12357 12357
+ Misses 5133 5132 -1
Partials 2232 2232
Continue to review full report at Codecov.
|
Signed-off-by: Rosen Penev <[email protected]>
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 👍
for (auto&& filteredIfd : filteredIfds) { | ||
#ifdef EXIV2_DEBUG_MESSAGES | ||
std::cerr << "Warning: Exif IFD " << filteredIfds << " not encoded\n"; | ||
std::cerr << "Warning: Exif IFD " << filteredIfd << " not encoded\n"; |
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.
LoL, I wonder what was happening here before 🙉
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.
Probably same thing since there's only one member.
Signed-off-by: Rosen Penev [email protected]