Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix FMT_FORMAT_AS const specifier position (fmtlib#1554)
The current `FMT_FORMAT_AS` macro will make `formatter<Char *>::format` have the first argument type `const Char *&` which is incorrect an should be `Char *const &`. This pull request fixes that by changing the first argument type in the macro definition body from `const Type &` to `Type const &`.
- Loading branch information