mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
Common/Hash: Namespace code under the Common namespace
Brings more common code under the Common namespace.
This commit is contained in:
@ -91,7 +91,7 @@ struct hash<PortableVertexDeclaration>
|
||||
{
|
||||
size_t operator()(const PortableVertexDeclaration& decl) const
|
||||
{
|
||||
return HashFletcher((u8*)&decl, sizeof(decl));
|
||||
return Common::HashFletcher(reinterpret_cast<const u8*>(&decl), sizeof(decl));
|
||||
}
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user