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

Method readCppStyleComment

external/jsoncpp/jsoncpp.cpp:558–565  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

556}
557
558bool Reader::readCppStyleComment() {
559 while (current_ != end_) {
560 Char c = getNextChar();
561 if (c == '\r' || c == '\n')
562 break;
563 }
564 return true;
565}
566
567void Reader::readNumber() {
568 while (current_ != end_) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected