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
Commit ff92223 changed:
- template <typename Locale> explicit locale_ref(const Locale& loc); + + template <typename Locale, FMT_ENABLE_IF(sizeof(Locale::collate) != 0)> + locale_ref(const Locale& loc);
which is an ABI change for platforms like amd64-gnu-linux:
-_ZN3fmt3v116detail10locale_refC1ISt6localeEERKT_ +_ZN3fmt3v116detail10locale_refC1ISt6localeLi0EEERKT_
I am reporting this because ABI seems to be important to fmtlib (cf. commit 3e04222). ABI break observed by end-user at https://bugzilla.suse.com/show_bug.cgi?id=1235078 .
The text was updated successfully, but these errors were encountered:
This was non-intentional, will look into restoring the ABI compatibility. Thanks for reporting!
Sorry, something went wrong.
No branches or pull requests
Commit ff92223 changed:
which is an ABI change for platforms like amd64-gnu-linux:
I am reporting this because ABI seems to be important to fmtlib (cf. commit 3e04222).
ABI break observed by end-user at https://bugzilla.suse.com/show_bug.cgi?id=1235078 .
The text was updated successfully, but these errors were encountered: