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
At least GCC_VERSION is used elsewhere (several open source projects such as python, mysql, etc). Leaking it leads to errors such as this: components/third_party/json.hpp:66:0: error: GCC_VERSION" redefined [-Werror]
The macro is only used on the spot, so it seems like a better use would be something like that:
While json.hpp defines CLANG_VERSION & GCC_VERSION where appropriate:
It fails to take a few facts into account:
At least GCC_VERSION is used elsewhere (several open source projects such as python, mysql, etc). Leaking it leads to errors such as this:
components/third_party/json.hpp:66:0: error: GCC_VERSION" redefined [-Werror]
The macro is only used on the spot, so it seems like a better use would be something like that:
Or something.
The text was updated successfully, but these errors were encountered: