| 8 | namespace ftg { |
| 9 | |
| 10 | LocIndex::LocIndex() : Path(""), Line(0), Column(0), FromMacro(false) {} |
| 11 | |
| 12 | LocIndex::LocIndex(std::string Path, size_t Line, size_t Column, bool FromMacro) |
| 13 | : Path(util::getNormalizedPath(Path)), Line(Line), Column(Column), |
nothing calls this directly
no test coverage detected