Update ChangeLog.rst

This commit is contained in:
Victor Zverovich 2021-05-31 07:43:29 -07:00 committed by GitHub
parent 9bb406d78d
commit e9e89b355b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -93,7 +93,7 @@
template <> struct fmt::formatter<my_type>: formatter<string_view> {
template <typename FormatContext>
auto format(my_type c, FormatContext& ctx) const { // Note const here.
auto format(my_type obj, FormatContext& ctx) const { // Note const here.
// ...
}
};