summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus/Token.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/cplusplus/Token.h')
-rw-r--r--src/shared/cplusplus/Token.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/shared/cplusplus/Token.h b/src/shared/cplusplus/Token.h
index acbe3927ba..cd1cf577c6 100644
--- a/src/shared/cplusplus/Token.h
+++ b/src/shared/cplusplus/Token.h
@@ -335,10 +335,10 @@ public:
union {
void *ptr;
- Literal *literal;
- NumericLiteral *number;
- StringLiteral *string;
- Identifier *identifier;
+ const Literal *literal;
+ const NumericLiteral *number;
+ const StringLiteral *string;
+ const Identifier *identifier;
unsigned close_brace;
unsigned lineno;
};