Removed some out of date TODOs.

This commit is contained in:
Aaron Jacobs 2011-05-25 23:26:58 +00:00
parent ccde848fd1
commit b6620e2801
2 changed files with 0 additions and 6 deletions

View File

@ -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
{

View File

@ -10,10 +10,6 @@
#include <json/json.h>
#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<int32_t>::max()
#define kint32min std::numeric_limits<int32_t>::min()