mirror of
https://github.com/boostorg/wave.git
synced 2026-01-24 18:32:38 +00:00
Fixed several test cases.
[SVN r28585]
This commit is contained in:
@@ -19,6 +19,9 @@
|
||||
// be in the range of char.
|
||||
//E 006_058.cpp(21): warning: character literal out of range: '\x123'
|
||||
#if '\x123' == 0x123
|
||||
false
|
||||
#else
|
||||
true
|
||||
#endif
|
||||
|
||||
/*-
|
||||
|
||||
@@ -19,6 +19,9 @@
|
||||
// be in the range of char.
|
||||
//E 006_059.cpp(21): warning: character literal out of range: L'\xabcdef012'
|
||||
#if L'\xabcdef012' == 0xbcdef012
|
||||
false
|
||||
#else
|
||||
true
|
||||
#endif
|
||||
|
||||
/*-
|
||||
|
||||
@@ -19,6 +19,9 @@
|
||||
// 35.2:
|
||||
//E 006_060.cpp(21): warning: character literal out of range: 'abcdefghi'
|
||||
#if 'abcdefghi' == '\x61\x62\x63\x64\x65\x66\x67\x68\x69'
|
||||
false
|
||||
#else
|
||||
true
|
||||
#endif
|
||||
|
||||
/*-
|
||||
|
||||
@@ -18,6 +18,9 @@
|
||||
// 4.3: Empty character constant is an error.
|
||||
//E 006_061.cpp(20): error: ill formed preprocessor expression: '' == 0
|
||||
#if '' == 0
|
||||
false
|
||||
#else
|
||||
true
|
||||
#endif
|
||||
|
||||
/*-
|
||||
|
||||
Reference in New Issue
Block a user