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

@@ -39,9 +39,9 @@ MakeIntegerChecker (int64_t min, int64_t max, std::string name)
virtual bool Check (const AttributeValue &value) const {
const IntegerValue *v = dynamic_cast<const IntegerValue *> (&value);
if (v == 0)
{
return false;
}
{
return false;
}
return v->Get () >= m_minValue && v->Get () <= m_maxValue;
}
virtual std::string GetValueTypeName (void) const {