pike.git/
src/
builtin_functions.c
Branch:
Tag:
Non-build tags
All tags
No tags
2015-10-17
2015-10-17 00:52:11 by Martin Nilsson <nilsson@fastmail.com>
9be1f6862d6161afbc2c7e61061785ad67a13b15 (
5
lines) (+
5
/-
0
)
[
Show
|
Annotate
]
Branch:
8.0
Added PIKE_DEBUG around code that shouldn't happen.
1238:
CASE_SHIFT(1,0); CASE_SHIFT(2,0); CASE_SHIFT(2,1);
+
#ifdef PIKE_DEBUG
default: Pike_error("Unexpected string shift combination: a:%d, b:%d!\n", a->size_shift, b->size_shift); break;
-
+
#endif
} #undef CASE_SHIFT #undef TWO_SHIFTS
1312:
CASE_SHIFT(1,0); CASE_SHIFT(2,0); CASE_SHIFT(2,1);
+
#ifdef PIKE_DEBUG
default: Pike_error("Unexpected string shift combination: a:%d, b:%d!\n", a->size_shift, b->size_shift); break;
-
+
#endif
} #undef CASE_SHIFT #undef TWO_SHIFTS