fixed minor issues

This commit is contained in:
fourtf
2018-06-26 17:51:31 +02:00
parent fb230423f6
commit c5441c6d4a
5 changed files with 4 additions and 4 deletions
+16
View File
@@ -0,0 +1,16 @@
#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