-
-
Notifications
You must be signed in to change notification settings - Fork 968
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 blob #8931
Remove blob #8931
Conversation
CStrA out; | ||
out.Format("0x%04X (%d, %d)", tile, TileX(tile), TileY(tile)); | ||
return out.Transfer(); | ||
std::stringstream ss; |
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.
personally I always do "char buf[32]" and "seprintf" in such cases.
But now you already put in the effort to find those weird stream modifiers :p
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.
Depends how much we care about the extra overhead of sstream/iomanip includes
Motivation / Problem
Unfixable GCC warnings when linking with LTO due to "optimised" code mixing heap & stack objects (it can't ever do this, but GCC warns all the same)
attempt to free a non-heap object 'hdrEmpty' [-Wfree-nonheap-object]
Description
Blob/CBlobT/CStrA is some weird code (mostly used by YAPF desync dump output) with auto-lifetime managed container objects.
Luckily, the STL exists and we can use std::string/std::vector for the same purposes.
Limitations
This is basically a 1-1 translation and the code is still real ugly.
Converting "advanced" printf commands (
0x%04X
) to iostream-based code is real ugly.std::format
would make it nicer, but that requires C++20 :)Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.