From e77fcf368ededd1d75920edd26bbf141165e676d Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 13 Feb 2009 02:28:26 -0500 Subject: [PATCH] Added some TODOs for the preprocessor. --- mojoshader_preprocessor.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/mojoshader_preprocessor.c b/mojoshader_preprocessor.c index 76b17de1..c55665ce 100644 --- a/mojoshader_preprocessor.c +++ b/mojoshader_preprocessor.c @@ -415,6 +415,19 @@ static inline const char *_preprocessor_nexttoken(Preprocessor *_ctx, return NULL; // we're done! } // if + // !!! FIXME: todo. + // TOKEN_PP_INCLUDE, + // TOKEN_PP_LINE, + // TOKEN_PP_DEFINE, + // TOKEN_PP_UNDEF, + // TOKEN_PP_IF, + // TOKEN_PP_IFDEF, + // TOKEN_PP_IFNDEF, + // TOKEN_PP_ELSE, + // TOKEN_PP_ELIF, + // TOKEN_PP_ENDIF, + // TOKEN_PP_ERROR, + Token token = preprocessor_internal_lexer(state); if (token == TOKEN_EOI) {