Skip to content

Commit 3bed2ef

Browse files
committed
Fix [-Wduplicated-cond] in MBString extension
1 parent b9f3e72 commit 3bed2ef

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

ext/mbstring/libmbfl/filters/mbfilter_euc_jp_win.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,6 @@ mbfl_filt_conv_wchar_eucjpwin(int c, mbfl_convert_filter *filter)
319319
s1 = 0x2172;
320320
} else if (c == 0xffe2) { /* FULLWIDTH NOT SIGN */
321321
s1 = 0x224c;
322-
} else if (c == 0xff5e) { /* FULLWIDTH TILDE */
323-
s1 = 0x2141;
324322
} else {
325323
s1 = -1;
326324
c1 = 0;

0 commit comments

Comments
 (0)