diff --git a/src/lib_json/json_value.cpp b/src/lib_json/json_value.cpp index cf83aa7..aed7542 100644 --- a/src/lib_json/json_value.cpp +++ b/src/lib_json/json_value.cpp @@ -540,7 +540,6 @@ Value::compare( const Value &other ) const } -// TODO(jacobsa): Check this for correctness given the new type-coallescing API. bool Value::operator <( const Value &other ) const { @@ -603,7 +602,6 @@ Value::operator >( const Value &other ) const return other < *this; } -// TODO(jacobsa): Check this for correctness given the new type-coallescing API. bool Value::operator ==( const Value &other ) const { diff --git a/src/test_lib_json/main.cpp b/src/test_lib_json/main.cpp index 61a4a93..1c7f242 100644 --- a/src/test_lib_json/main.cpp +++ b/src/test_lib_json/main.cpp @@ -10,10 +10,6 @@ #include #include "jsontest.h" -// TODO: -// - boolean value returns that they are integral. Should not be. -// - unsigned integer in integer range are not considered to be valid integer. Should check range. - // Make numeric limits more convenient to talk about. #define kint32max std::numeric_limits::max() #define kint32min std::numeric_limits::min()