mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
42749538a7
Fix QString formatter
31 lines
565 B
C++
31 lines
565 B
C++
#pragma once
|
|
|
|
#include <fmt/format.h>
|
|
#include <QUuid>
|
|
|
|
namespace chatterino {
|
|
|
|
template <typename... Args>
|
|
auto fS(Args &&... args) -> decltype(fmt::format(std::forward<Args>(args)...))
|
|
{
|
|
return fmt::format(std::forward<Args>(args)...);
|
|
}
|
|
|
|
static QString CreateUUID()
|
|
{
|
|
auto uuid = QUuid::createUuid();
|
|
return uuid.toString();
|
|
}
|
|
|
|
} // namespace chatterino
|
|
|
|
namespace fmt {
|
|
|
|
// format_arg for QString
|
|
inline void format_arg(BasicFormatter<char> &f, const char *&, const QString &v)
|
|
{
|
|
f.writer().write("{}", v.toStdString());
|
|
}
|
|
|
|
} // namespace fmt
|