aboutsummaryrefslogtreecommitdiff
path: root/src/exact_value.cpp
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2016-10-08 10:01:29 +0100
committerGinger Bill <bill@gingerbill.org>2016-10-08 10:01:29 +0100
commita5c6340316245f4f63e74d307f9d7c8be09360c6 (patch)
tree43d2c68064a5ca31428e22f978a2f0283e2f3589 /src/exact_value.cpp
parentc5d20d2eef6c25b23c2aa69cdc1dbc7ce7d6753a (diff)
"Maybe-fy" operator
Diffstat (limited to 'src/exact_value.cpp')
-rw-r--r--src/exact_value.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exact_value.cpp b/src/exact_value.cpp
index 83e9d5ad6..c8c47ea60 100644
--- a/src/exact_value.cpp
+++ b/src/exact_value.cpp
@@ -23,7 +23,7 @@ struct ExactValue {
union {
b32 value_bool;
String value_string;
- i64 value_integer;
+ i64 value_integer; // NOTE(bill): This must be an integer and not a pointer
f64 value_float;
i64 value_pointer;
AstNode *value_compound;