1
0
mirror of synced 2024-11-15 11:33:23 +01:00
ImHex/lib/libimhex/include/hex/helpers/fmt.hpp

19 lines
424 B
C++
Raw Normal View History

2021-08-29 22:15:18 +02:00
#pragma once
#include <string_view>
#include <fmt/format.h>
#include <fmt/chrono.h>
namespace hex {
template<typename... Args>
inline std::string format(std::string_view format, Args... args) {
2021-08-29 22:15:18 +02:00
return fmt::format(fmt::runtime(format), args...);
}
template<typename... Args>
inline void print(std::string_view format, Args... args) {
2021-08-29 22:15:18 +02:00
fmt::print(fmt::runtime(format), args...);
}
}