Merge pull request #15395 from Sai628/v3

Bug fix: CCValue operator overloading of Comparison "==" in case Type::VECTOR
This commit is contained in:
minggo 2016-04-14 11:58:19 +08:00
commit 6e7ab0fb46
1 changed files with 2 additions and 1 deletions

View File

@ -378,8 +378,9 @@ bool Value::operator== (const Value& v) const
{ {
if (v1[i] != v2[i]) return false; if (v1[i] != v2[i]) return false;
} }
return true;
} }
return true; return false;
} }
case Type::MAP: case Type::MAP:
{ {