mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Refactoring of container usage:
* New ripple container aliases use hardened_hash * Use std::tuple instead of boost::tuple * Use std unordered containers instead of boost * Fix Destroyer for new containers * Fix warning for fnv1a on 32-bit arch * Validator fixes for new containers
This commit is contained in:
committed by
Vinnie Falco
parent
8f5b4a6c96
commit
fdfcebd1cb
@@ -1215,6 +1215,14 @@ public:
|
||||
String convertToPrecomposedUnicode() const;
|
||||
#endif
|
||||
|
||||
template <class Hasher>
|
||||
friend
|
||||
void
|
||||
hash_append (Hasher& h, String const& s)
|
||||
{
|
||||
h.append(s.text.getAddress(), s.text.sizeInBytes());
|
||||
}
|
||||
|
||||
private:
|
||||
//==============================================================================
|
||||
struct FromNumber { };
|
||||
|
||||
Reference in New Issue
Block a user