Handle a `#version` directive
| 1567 | |
| 1568 | // Handle a `#version` directive |
| 1569 | static void HandleVersionDirective(PreprocessorDirectiveContext* context) |
| 1570 | { |
| 1571 | // TODO(tfoley): parse enough of this to spit it out again later? |
| 1572 | SkipToEndOfLine(context); |
| 1573 | } |
| 1574 | |
| 1575 | |
| 1576 | // Callback interface used by preprocessor directives |
nothing calls this directly
no test coverage detected