1
0
mirror of synced 2025-01-11 13:52:15 +01:00
2024-12-14 19:15:49 +01:00

14 lines
263 B
C++

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