MCPcopy Create free account
hub / github.com/cuberite/cuberite / readNumber

Method readNumber

lib/jsoncpp/src/lib_json/json_reader.cpp:451–461  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

449
450
451void
452Reader::readNumber()
453{
454 while ( current_ != end_ )
455 {
456 if ( !(*current_ >= '0' && *current_ <= '9') &&
457 !in( *current_, '.', 'e', 'E', '+', '-' ) )
458 break;
459 ++current_;
460 }
461}
462
463bool
464Reader::readString()

Callers

nothing calls this directly

Calls 1

inFunction · 0.85

Tested by

no test coverage detected