Corrected missed #if in r57652.
This commit is contained in:
parent
b7f5ba16db
commit
44300950dc
|
@ -76,7 +76,9 @@ is_sign_element(STRINGLIB_CHAR c)
|
||||||
{
|
{
|
||||||
switch (c) {
|
switch (c) {
|
||||||
case ' ': case '+': case '-':
|
case ' ': case '+': case '-':
|
||||||
|
#if ALLOW_PARENS_FOR_SIGN
|
||||||
case '(':
|
case '(':
|
||||||
|
#endif
|
||||||
return 1;
|
return 1;
|
||||||
default:
|
default:
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue