aboutsummaryrefslogtreecommitdiff
path: root/src/exact_value.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-06-15 23:13:26 +0100
committergingerBill <bill@gingerbill.org>2018-06-15 23:13:26 +0100
commit6d1c32eb778fde9f65744a62678d876c7d5c3837 (patch)
tree57237b45df4f67415f1f57c195333d583a826a9d /src/exact_value.cpp
parentba776a3c9fbaa8f64f1567112c71c93416776260 (diff)
Add escape code for ESC \e
Diffstat (limited to 'src/exact_value.cpp')
-rw-r--r--src/exact_value.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/exact_value.cpp b/src/exact_value.cpp
index 1760d05c2..7012d4db5 100644
--- a/src/exact_value.cpp
+++ b/src/exact_value.cpp
@@ -407,10 +407,6 @@ ExactValue exact_unary_operator_value(TokenKind op, ExactValue v, i32 precision,
if (is_unsigned) {
i = i & unsigned_integer_maxs[precision/8];
}
- // if (0 < precision && precision < 64) {
- // i = i & ~(-1ll << precision);
- // }
-
return exact_value_i64(i);
}