aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2022-02-22 23:03:04 +0000
committergingerBill <bill@gingerbill.org>2022-02-22 23:03:04 +0000
commit83f7a887b7ab9313e520211521297a9352c408b9 (patch)
tree30f69095aba9fba8c4673c56a0e74d197086c5d8
parentad2f1ac24ebdb4937c5a469c3d3f48b8f53f6218 (diff)
Move comment
-rw-r--r--src/exact_value.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exact_value.cpp b/src/exact_value.cpp
index 3dae96853..f6df48951 100644
--- a/src/exact_value.cpp
+++ b/src/exact_value.cpp
@@ -50,9 +50,9 @@ struct ExactValue {
union {
bool value_bool;
String value_string;
- BigInt value_integer; // NOTE(bill): This must be an integer and not a pointer
+ BigInt value_integer;
f64 value_float;
- i64 value_pointer;
+ i64 value_pointer; // NOTE(bill): This must be an integer and not a pointer
Complex128 *value_complex;
Quaternion256 *value_quaternion;
Ast * value_compound;