| 909 | |
| 910 | |
| 911 | void Preprocessor::UpdateFirstTokenLine(TokenSequence ts) { |
| 912 | auto loc = ts.Peek()->loc_; |
| 913 | loc.line_ = curLine_ + loc.line_ - lineLine_ - 1; |
| 914 | ts.UpdateHeadLocation(loc); |
| 915 | } |
| 916 | |
| 917 | |
| 918 | TokenSequence Macro::RepSeq(const std::string* filename, unsigned line) { |
nothing calls this directly
no test coverage detected