2
0
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:
Hartmut Kaiser
2005-05-02 16:06:55 +00:00
parent 785326b7a9
commit 20d90d2ea2
4 changed files with 12 additions and 0 deletions

View File

@@ -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
/*-

View File

@@ -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
/*-

View File

@@ -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
/*-

View File

@@ -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
/*-