summaryrefslogtreecommitdiff
path: root/source/slang/slang-serialize-types.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-serialize-types.h')
-rw-r--r--source/slang/slang-serialize-types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/slang-serialize-types.h b/source/slang/slang-serialize-types.h
index 9bb84e290..fb0dd2f9d 100644
--- a/source/slang/slang-serialize-types.h
+++ b/source/slang/slang-serialize-types.h
@@ -27,7 +27,7 @@ struct SerialOptionFlag
enum Enum : Type
{
RawSourceLocation = 0x01, ///< If set will store directly SourceLoc - only useful if current source locs will be identical when read in (typically this is *NOT* the case)
- DebugInfo = 0x02, ///< If set will output debug information, that can be reconstructed when read after being stored.
+ SourceLocation = 0x02, ///< If set will output SourceLoc information, that can be reconstructed when read after being stored.
ASTModule = 0x04, ///< If set will output AST modules - typically required, but potentially not desired (for example with obsfucation)
IRModule = 0x08, ///< If set will output IR modules - typically required
};