aboutsummaryrefslogtreecommitdiff
path: root/src/check_type.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-09-16 23:03:25 +0100
committergingerBill <bill@gingerbill.org>2021-09-16 23:03:25 +0100
commit4cb7f056440130cb8160a8eaea4a47b270975483 (patch)
treed655f614efd1d32a7d20d0148962e5ac3d0fff62 /src/check_type.cpp
parent91d089ffe26f3d31afcde51010e58e0b1f0d0a11 (diff)
parentd2aa6af88277b670d2891508afc1a7269c6ee15e (diff)
Merge branch 'master' of https://github.com/odin-lang/Odin
Diffstat (limited to 'src/check_type.cpp')
-rw-r--r--src/check_type.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check_type.cpp b/src/check_type.cpp
index 00a4c4ab2..ffdc22898 100644
--- a/src/check_type.cpp
+++ b/src/check_type.cpp
@@ -826,7 +826,7 @@ void check_bit_set_type(CheckerContext *c, Type *type, Type *named_type, Ast *no
GB_ASSERT(type->kind == Type_BitSet);
type->BitSet.node = node;
- i64 const DEFAULT_BITS = cast(i64)(8*build_context.word_size);
+ /* i64 const DEFAULT_BITS = cast(i64)(8*build_context.word_size); */
i64 const MAX_BITS = 128;
Ast *base = unparen_expr(bs->elem);