Make NumericId hashable
This commit is contained in:
parent
9d26b5742e
commit
60eecba226
1 changed files with 11 additions and 0 deletions
|
|
@ -5,6 +5,8 @@
|
||||||
// If not, contact the sfizz maintainers at https://github.com/sfztools/sfizz
|
// If not, contact the sfizz maintainers at https://github.com/sfztools/sfizz
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
#include "../StringViewHelpers.h"
|
||||||
|
#include <functional>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Numeric identifier
|
* @brief Numeric identifier
|
||||||
|
|
@ -50,3 +52,12 @@ struct NumericId {
|
||||||
private:
|
private:
|
||||||
int number_ = -1;
|
int number_ = -1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
namespace std {
|
||||||
|
template <class U> struct hash<NumericId<U>> {
|
||||||
|
size_t operator()(const NumericId<U> &id) const
|
||||||
|
{
|
||||||
|
return hashNumber(id.number());
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue