* testsuite/28_regex/traits/wchar_t/isctype.cc: Fix whitespace.

From-SVN: r220655
This commit is contained in:
Jason Merrill 2015-02-12 15:20:30 -05:00
parent ec6a7096e3
commit 864f0146f0
1 changed files with 15 additions and 14 deletions

View File

@ -55,7 +55,8 @@ test01()
/* On some targets, '\n' is in class 'blank'.
See https://gcc.gnu.org/ml/gcc-patches/2015-02/msg00059.html. */
VERIFY( t.isctype(L'\n', t.lookup_classname(range(blank))));
#else VERIFY(!t.isctype(L'\n', t.lookup_classname(range(blank))));
#else
VERIFY(!t.isctype(L'\n', t.lookup_classname(range(blank))));
#endif
VERIFY( t.isctype(L't', t.lookup_classname(range(upper), true)));
VERIFY( t.isctype(L'T', t.lookup_classname(range(lower), true)));