Commit Graph

7 Commits

Author SHA1 Message Date
ff91d49869 Update copyright date 2024-01-26 16:45:53 +01:00
7ba523ba37 Update copyright date to 2023 2023-01-15 16:13:42 +01:00
5e8d774fa0 Use fmt::format() function instead of ""_format literal
This replaces most uses of the ""_format literal with function calls to
fmt::format(). The latter form is available in all versions of the fmt
library, while the ""_format literal is deprecated in version 8 and
removed in version 9.

This might cost us some performance and early error detection, because
in at least some versions of the fmt library the _format() construct was
used to compile the format patterns at run time. That's why there are
some uses of the literal left in places where performance might be more
critical, they need a closer look.

See #1704
2023-01-06 20:15:40 +01:00
e1fb98e931 Add assertions so we are not using the wrong func by accident
It doesn't matter which function we use as long as we don't use the
return value from them. So the existing cases aren't a problem, but
this way this will not happen in the future where it might be a
problem.
2022-07-28 17:41:43 +02:00
56d5145615 Updates copyright date to 2022 in all files 2022-01-11 14:30:34 +01:00
d45018f88b Update copyright year to 2021 2021-01-28 09:38:17 +01:00
241068c503 Move test buffer class into header so we can reuse it 2021-01-18 18:11:58 +01:00