Convert naming of hash helpers to AS namespace

This commit is contained in:
Levi McCallum
2015-11-30 06:53:50 -08:00
parent 82848d6c23
commit cd78bcce99
3 changed files with 16 additions and 16 deletions

View File

@@ -33,5 +33,5 @@ size_t ASTextKitAttributes::hash() const
std::hash<CGFloat>()(shadowOpacity),
std::hash<CGFloat>()(shadowRadius),
};
return CKIntegerArrayHash(subhashes, sizeof(subhashes) / sizeof(subhashes[0]));
return ASIntegerArrayHash(subhashes, sizeof(subhashes) / sizeof(subhashes[0]));
}