https://gcc.gnu.org/bugzilla/show_bug.cgi?id=122824
--- Comment #11 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Note a simplier testcase for the warning:
```
#include <format>
int main() {
auto a = std::format("{}", 42);
}
```
No need for the wrapper around format.
