| 119 | struct SIMPLECPP_LIB Location { |
| 120 | Location() = default; |
| 121 | Location(unsigned int fileIndex, unsigned int line, unsigned int col) |
| 122 | : fileIndex(fileIndex) |
| 123 | , line(line) |
| 124 | , col(col) |
| 125 | {} |
| 126 | |
| 127 | Location(const Location &loc) = default; |
| 128 | Location &operator=(const Location &other) = default; |