| 700 | } |
| 701 | |
| 702 | CompilerInputStream::CompilerInputStream( ParserState& state, const ShadingLanguage lang ) : |
| 703 | CodeStream( lang ), m_state( state ) |
| 704 | { |
| 705 | m_location.fileName = MakeInlineString( "" ); |
| 706 | m_location.lineNumber = unsigned( -1 ); |
| 707 | } |
| 708 | |
| 709 | void CompilerInputStream::Endl() |
| 710 | { |
nothing calls this directly
no test coverage detected