slight change to how we declare our qHash overload for CValueObject,

which fixes some include order dependency shenanigans when compiling with GCC,
which was caused by the requirement to overload qHash for CCollection
and the way qHash interacts with the dreaded two-phase lookup for C++ templates

refs #81
This commit is contained in:
Mathew Sutcliffe
2014-01-08 00:12:42 +00:00
parent 64e14b7965
commit bc611263e9
2 changed files with 16 additions and 18 deletions

View File

@@ -175,8 +175,3 @@ namespace BlackMisc
return argument;
}
}
uint qHash(const BlackMisc::CValueObject &value)
{
return value.getValueHash();
}