MCPcopy Create free account
hub / github.com/cppcheck-opensource/cppcheck / gotoNextLine

Function gotoNextLine

externals/simplecpp/simplecpp.cpp:3017–3024  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3015}
3016
3017static const simplecpp::Token *gotoNextLine(const simplecpp::Token *tok)
3018{
3019 const unsigned int line = tok->location.line;
3020 const unsigned int file = tok->location.fileIndex;
3021 while (tok && tok->location.line == line && tok->location.fileIndex == file)
3022 tok = tok->next;
3023 return tok;
3024}
3025
3026#ifdef SIMPLECPP_WINDOWS
3027

Callers 1

preprocessMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected