- "The '(FT_RENDER_MODE_NORMAL)' named constant with the value of 0 is used in the bitwise operation. font.cpp:485"
How does that line look? Because in
line 485 (master), there are different constants:
if (FT_Load_Char(face, codePoint, FT_LOAD_TARGET_NORMAL | FT_LOAD_FORCE_AUTOHINT) != 0)
(but why the double assignment?)
The separate declaration and initialization is of course pointless, it can be fixed too.
Do you have all the occurrences in text format?
I guess now that I realize that there might be reason to look into it more, I might go ahead and fix up most of those warnings.
Don't we have to do everything again if we change something and regenerate GLLoader.cpp? If it doesn't take long, fine, but let's not waste our time on fixing generated files just for cosmetic reasons
As for null string testing, I'd rather keep it that way since it's more idiomatic. But does someone disagree?
Is it really more idiomatic? After all, the
empty() method exists for only this purpose