Remove unnecessary check in Value::IsObject

refs #10199
This commit is contained in:
Gunnar Beutner 2015-09-23 10:48:49 +02:00
parent af5c3b03f8
commit 677e6936c5
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ public:
*/
inline bool IsObject(void) const
{
return !IsEmpty() && (GetType() == ValueObject);
return (GetType() == ValueObject);
}
template<typename T>