MCPcopy Create free account
hub / github.com/Illumina/hap.py / skipSpaces

Method skipSpaces

external/jsoncpp/jsoncpp.cpp:492–500  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

490}
491
492void Reader::skipSpaces() {
493 while (current_ != end_) {
494 Char c = *current_;
495 if (c == ' ' || c == '\t' || c == '\r' || c == '\n')
496 ++current_;
497 else
498 break;
499 }
500}
501
502bool Reader::match(Location pattern, int patternLength) {
503 if (end_ - current_ < patternLength)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected