Changed 2nd exists2 to exists3 in exists()

This commit is contained in:
John Wellbelove 2015-08-13 10:38:12 +01:00
parent ad01ec664c
commit 13c024bd9c

View File

@ -132,7 +132,7 @@ namespace etl
// Do we have a third hash?
if (!etl::is_same<THash3, null_hash>::value)
{
exists2 = flags[get_hash<THash3>(key)];
exists3 = flags[get_hash<THash3>(key)];
}
return exists1 && exists2 && exists3;