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

Method readCStyleComment

external/jsoncpp/jsoncpp.cpp:549–556  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

547}
548
549bool Reader::readCStyleComment() {
550 while (current_ != end_) {
551 Char c = getNextChar();
552 if (c == '*' && *current_ == '/')
553 break;
554 }
555 return getNextChar() == '/';
556}
557
558bool Reader::readCppStyleComment() {
559 while (current_ != end_) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected