1
0
mirror of synced 2024-12-13 16:31:07 +01:00
ImHex/lib/libimhex/include/hex/helpers/fmt.hpp
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...);
}
}