summaryrefslogtreecommitdiff
path: root/includes/compiler/BitVector.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--includes/compiler/BitVector.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/includes/compiler/BitVector.h b/includes/compiler/BitVector.h
index f8f8143..724bb8f 100644
--- a/includes/compiler/BitVector.h
+++ b/includes/compiler/BitVector.h
@@ -27,8 +27,7 @@ inline void Bv_SetBit(UInt32 bit, BitVector *bv) {
if ((bit / 32) < bv->size) {
bv->data[bit / 32] |= 1 << (bit & 31);
} else {
-#line 56
- CError_FATAL();
+ CError_FATAL(56);
}
}