commit | e91a68cb9e6dd7f567f1eaf063351179c64ae1c5 | [log] [tgz] |
---|---|---|
author | Aaron Jacobs <aaronjjacobs@gmail.com> | Wed May 25 04:34:57 2011 +0000 |
committer | Aaron Jacobs <aaronjjacobs@gmail.com> | Wed May 25 04:34:57 2011 +0000 |
tree | 68bdbc68b1b85c4fb500b3c062dec86d185e76a5 | |
parent | 1b138e8544d87f8bc4b35214be9f2bdcf78d1f36 [diff] |
Fixed a compilation warning/error.
diff --git a/src/lib_json/json_value.cpp b/src/lib_json/json_value.cpp index 35ec41d..b279953 100644 --- a/src/lib_json/json_value.cpp +++ b/src/lib_json/json_value.cpp
@@ -726,6 +726,8 @@ return UInt(value_.uint_); case realValue: return UInt( value_.real_ ); + default: + break; } JSON_ASSERT_UNREACHABLE; return 0;