You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In two locations, stb_vorbis #defines a macro called BUFFER_SIZE. This is a very generic name that may conflict with other surrounding code. Can this macro be renamed to STB_BUFFER_SIZE, and maybe also be #undefd afterwards?
The text was updated successfully, but these errors were encountered:
We will probably merge this, but note that stb_vorbis (unlike most other stb libs) is not a header-file library and is meant to be compiled as its own translation unit; #including it into other code is not an intended use case to begin with.
In two locations, stb_vorbis #defines a macro called
BUFFER_SIZE
. This is a very generic name that may conflict with other surrounding code. Can this macro be renamed toSTB_BUFFER_SIZE
, and maybe also be#undef
d afterwards?The text was updated successfully, but these errors were encountered: