mirror-chatterino2/src/util/helpers.hpp

14 lines
255 B
C++

#pragma once
#include <fmt/format.h>
namespace chatterino {
template <typename... Args>
auto fS(Args &&... args) -> decltype(fmt::format(std::forward<Args>(args)...))
{
return fmt::format(std::forward<Args>(args)...);
}
} // namespace chatterino