We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
freelocale
fmt/test/posix-mock-test.cc
Line 507 in 35c0286
error: /home/sean/projects/fmt/test/posix-mock-test.cc:507:18 cannot overload void freelocale(__locale_struct*) noexcept on noexcept-specifier previous declaration at /usr/include/locale.h:180:13 FreeLocaleResult freelocale(locale_type locale) FMT_LOCALE_THROW { ^
In /usr/include/locale.h it's defined as:
extern void freelocale (locale_t __dataset) __THROW;
I don't know how to make this right on Circle given the current __THROW definition:
__THROW
# if defined(__THROW) && \ ((FMT_GCC_VERSION > 0 && FMT_GCC_VERSION <= 408) || defined(__e2k__)) # define FMT_LOCALE_THROW __THROW # else # define FMT_LOCALE_THROW # endif
The text was updated successfully, but these errors were encountered:
It is some old experimental code that we no longer need, removed in afbcf1e.
Sorry, something went wrong.
No branches or pull requests
fmt/test/posix-mock-test.cc
Line 507 in 35c0286
In /usr/include/locale.h it's defined as:
I don't know how to make this right on Circle given the current
__THROW
definition:The text was updated successfully, but these errors were encountered: