From 38c4270c982717810d7ff0b45c3150180d807851 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 13 Feb 2009 01:41:47 -0500 Subject: [PATCH] More minor comment tweaks. --- mojoshader_internal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mojoshader_internal.h b/mojoshader_internal.h index 63121f0f..ca5e7b93 100644 --- a/mojoshader_internal.h +++ b/mojoshader_internal.h @@ -333,9 +333,8 @@ typedef enum // is reported. It happens for things like missing #includes, etc. TOKEN_PREPROCESSING_ERROR, - TOKEN_INCOMPLETE_COMMENT, // caught, becomes TOKEN_PREPROCESSING_ERROR - // These are all caught by the preprocessor. Caller won't ever see them. + // They control the preprocessor (#includes new files, etc). TOKEN_PP_INCLUDE, TOKEN_PP_LINE, TOKEN_PP_DEFINE, @@ -347,6 +346,7 @@ typedef enum TOKEN_PP_ELIF, TOKEN_PP_ENDIF, TOKEN_PP_ERROR, // caught, becomes TOKEN_PREPROCESSING_ERROR + TOKEN_INCOMPLETE_COMMENT, // caught, becomes TOKEN_PREPROCESSING_ERROR } Token;