1
0
mirror of synced 2024-12-15 17:21:16 +01:00
ImHex/lib/libimhex/include/hex/helpers/fmt.hpp
2024-07-01 22:00:08 +02:00

14 lines
265 B
C++

#pragma once
#include <string_view>
#include <fmt/format.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...);
}
}