diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2025-10-11 15:35:58 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-11 15:35:58 +0200 |
| commit | d1d8df34116a53c7bb2d2fa1cfc10cfe0f73663b (patch) | |
| tree | ed86f1ee108b07d74746543d4a784f578e66104b /src/exact_value.cpp | |
| parent | 767098257eb5a6b4bc388ff3d21217f99292fbb9 (diff) | |
| parent | e6754547aba1df61af2fc302a100762c09fe215f (diff) | |
Merge pull request #5793 from Kelimion/checker-bugs
Checker bugs
Diffstat (limited to 'src/exact_value.cpp')
| -rw-r--r-- | src/exact_value.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exact_value.cpp b/src/exact_value.cpp index f2aed84c2..e7077bd5b 100644 --- a/src/exact_value.cpp +++ b/src/exact_value.cpp @@ -908,8 +908,8 @@ gb_internal ExactValue exact_binary_operator_value(TokenKind op, ExactValue x, E if (op != Token_Add) goto error; // NOTE(bill): How do you minimize this over allocation? - String sx = x.value_string; - String sy = y.value_string; + String16 sx = x.value_string16; + String16 sy = y.value_string16; isize len = sx.len+sy.len; u16 *data = gb_alloc_array(permanent_allocator(), u16, len); gb_memmove(data, sx.text, sx.len*gb_size_of(u16)); |