File: format.hpp

package info (click to toggle)
cppgir 2.0%2Bgit20250629.2a7d9ce-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,220 kB
  • sloc: cpp: 16,451; ansic: 355; python: 86; makefile: 13; sh: 9
file content (25 lines) | stat: -rw-r--r-- 444 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef FORMAT_HPP

#if __cplusplus >= 202002L
// available as of gcc-13
// also requires/checks the above guard on C++20

#include <format>
#include <string_view>

namespace fmt
{
template<typename... Args>
inline std::string
format(std::string_view format, Args &&...args)
{
  return std::vformat(format, std::make_format_args(args...));
}
} // namespace fmt

#else
// use original fmtlib
#include <fmt/format.h>
#endif

#endif // FORMAT_HPP