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

Method skipCommentTokens

external/jsoncpp/jsoncpp.cpp:404–412  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

402}
403
404void Reader::skipCommentTokens(Token &token) {
405 if (features_.allowComments_) {
406 do {
407 readToken(token);
408 } while (token.type_ == tokenComment);
409 } else {
410 readToken(token);
411 }
412}
413
414bool Reader::expectToken(TokenType type, Token &token, const char *message) {
415 readToken(token);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected