| 206 | |
| 207 | |
| 208 | static void PushInputStream(Preprocessor* preprocessor, PreprocessorInputStream* inputStream) |
| 209 | { |
| 210 | inputStream->parent = preprocessor->inputStream; |
| 211 | preprocessor->inputStream = inputStream; |
| 212 | } |
| 213 | |
| 214 | // Called when we reach the end of an input stream. |
| 215 | // Performs some validation and then destroys the input stream if required. |
no outgoing calls
no test coverage detected