mirror-chatterino2/src/util/QstringHash.hpp

15 lines
227 B
C++
Raw Normal View History

2018-05-28 08:34:54 +02:00
#pragma once
#include <QHash>
#include <QString>
namespace std {
template <>
struct hash<QString> {
std::size_t operator()(const QString &s) const
{
return qHash(s);
}
};
} // namespace std