core coding style changes

This commit is contained in:
Josh Pelkey
2011-05-13 14:52:27 -04:00
parent f6beada3cb
commit 86379fa5b5
111 changed files with 2361 additions and 2298 deletions

View File

@@ -87,16 +87,16 @@ class APointerChecker : public PointerChecker
const PointerValue *value = dynamic_cast<const PointerValue *> (&val);
if (value == 0)
{
return false;
return false;
}
if (value->GetObject () == 0)
{
return true;
return true;
}
T *ptr = dynamic_cast<T*> (PeekPointer (value->GetObject ()));
if (ptr == 0)
{
return false;
return false;
}
return true;
}