MCPcopy Create free account
hub / github.com/PyMesh/PyMesh / eat_white_space

Method eat_white_space

src/IO/IOUtils.cpp:35–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33}
34
35void IOUtils::eat_white_space(std::ifstream& fin) {
36 char next = fin.peek();
37 while (next == '\n' || next == ' ' || next == '\t' || next == '\r') {
38 fin.get();
39 next = fin.peek();
40 }
41}

Callers

nothing calls this directly

Calls 1

getMethod · 0.45

Tested by

no test coverage detected