mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
14 lines
255 B
C++
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
|