From b6620e28013304bdf05498ac5ef792b649dd6838 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Wed, 25 May 2011 23:26:58 +0000 Subject: [PATCH] Removed some out of date TODOs. --- src/lib_json/json_value.cpp | 2 -- src/test_lib_json/main.cpp | 4 ---- 2 files changed, 6 deletions(-) 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()