MCPcopy Create free account
hub / github.com/Duet3D/RepRapFirmware / GetColumn

Method GetColumn

src/GCodes/GCodeBuffer/StringParser.cpp:2095–2098  ·  view source on GitHub ↗

Get the current column if we can, else return -1

Source from the content-addressed store, hash-verified

2093
2094// Get the current column if we can, else return -1
2095int StringParser::GetColumn() const noexcept
2096{
2097 return (readPointer < 0) ? -1 : readPointer + (int)commandIndent;
2098}
2099
2100// End

Callers 4

THROWSFunction · 0.45
ButtonMenuItem.cppFile · 0.45
TextMenuItem.cppFile · 0.45
MenuItem.cppFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected