MCPcopy Create free account
hub / github.com/Illumina/paragraph / skipCommentTokens

Method skipCommentTokens

external/jsoncpp/jsoncpp.cpp:461–469  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

459}
460
461void Reader::skipCommentTokens(Token& token) {
462 if (features_.allowComments_) {
463 do {
464 readToken(token);
465 } while (token.type_ == tokenComment);
466 } else {
467 readToken(token);
468 }
469}
470
471bool Reader::readToken(Token& token) {
472 skipSpaces();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected