Skip to content

Commit b6620e2

Browse files
committed
Removed some out of date TODOs.
1 parent ccde848 commit b6620e2

2 files changed

Lines changed: 0 additions & 6 deletions

File tree

src/lib_json/json_value.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,6 @@ Value::compare( const Value &other ) const
540540
}
541541

542542

543-
// TODO(jacobsa): Check this for correctness given the new type-coallescing API.
544543
bool
545544
Value::operator <( const Value &other ) const
546545
{
@@ -603,7 +602,6 @@ Value::operator >( const Value &other ) const
603602
return other < *this;
604603
}
605604

606-
// TODO(jacobsa): Check this for correctness given the new type-coallescing API.
607605
bool
608606
Value::operator ==( const Value &other ) const
609607
{

src/test_lib_json/main.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@
1010
#include <json/json.h>
1111
#include "jsontest.h"
1212

13-
// TODO:
14-
// - boolean value returns that they are integral. Should not be.
15-
// - unsigned integer in integer range are not considered to be valid integer. Should check range.
16-
1713
// Make numeric limits more convenient to talk about.
1814
#define kint32max std::numeric_limits<int32_t>::max()
1915
#define kint32min std::numeric_limits<int32_t>::min()

0 commit comments

Comments
 (0)