mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
reformat usernamset
This commit is contained in:
parent
8c46cbf571
commit
2492a0ba21
|
@ -6,6 +6,7 @@
|
|||
#include <unordered_map>
|
||||
|
||||
namespace chatterino {
|
||||
|
||||
class Prefix
|
||||
{
|
||||
public:
|
||||
|
@ -19,9 +20,11 @@ private:
|
|||
|
||||
friend struct std::hash<Prefix>;
|
||||
};
|
||||
|
||||
} // namespace chatterino
|
||||
|
||||
namespace std {
|
||||
|
||||
template <>
|
||||
struct hash<chatterino::Prefix> {
|
||||
size_t operator()(const chatterino::Prefix &prefix) const
|
||||
|
@ -30,9 +33,11 @@ struct hash<chatterino::Prefix> {
|
|||
size_t(prefix.second.unicode());
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace std
|
||||
|
||||
namespace chatterino {
|
||||
|
||||
class UsernameSet
|
||||
{
|
||||
public:
|
||||
|
|
Loading…
Reference in a new issue