Fixed a compilation warning/error.

This commit is contained in:
Aaron Jacobs 2011-05-25 04:34:57 +00:00
parent 1b138e8544
commit e91a68cb9e

View File

@ -726,6 +726,8 @@ Value::asUInt() const
return UInt(value_.uint_);
case realValue:
return UInt( value_.real_ );
default:
break;
}
JSON_ASSERT_UNREACHABLE;
return 0;