Remove unused variables and code

This commit is contained in:
Danny Robson 2012-04-26 14:55:35 +10:00
parent cf39104515
commit 3823f239c2

View File

@ -224,7 +224,6 @@ is_number_valid (const json::number &node,
continue;
}
const json::node &val = *i.second;
if (!validator->second (node, schema))
return false;
}
@ -233,14 +232,6 @@ is_number_valid (const json::number &node,
}
bool
is_number_valid (const json::node &node,
const json::object &schema) {
not_implemented ();
return true;
}
//
// JSON string
//