LIPH's C++ Codes
format.h
Go to the documentation of this file.
1#ifndef LIPH_FORMAT_H_
2#define LIPH_FORMAT_H_
3
4// #if __has_cpp_attribute(__cpp_lib_format)
5// #include <format>
6// namespace liph {
7// using std::format;
8// }
9
10// #else
11#include "fmt/format.h"
12#include "fmt/std.h"
13namespace liph {
14using fmt::format;
15}
16
17// #endif // __cpp_lib_format
18
19#endif // LIPH_FORMAT_H_
Definition: algorithm.h:10