1
0
mirror of synced 2025-01-18 17:14:13 +01:00
2023-11-30 14:40:07 +01:00

13 lines
241 B
C++

#pragma once
#include <string_view>
#include <fmt/format.h>
namespace hex {
template<typename... Args>
std::string format(std::string_view format, Args... args) {
return fmt::format(fmt::runtime(format), args...);
}
}