11 Feb
2009
11 Feb
'09
6:03 a.m.
The following code:
BOOST_CHECK_EQUAL("boo", "boo"); BOOST_CHECK_EQUAL("boo", "bar"); BOOST_CHECK_EQUAL(L"boo", L"boo"); BOOST_CHECK_EQUAL(L"boo", L"bar");
Gives the following results
test.cpp(368): error in "Strings": check "boo" == "bar" failed [boo != bar] test.cpp(370): error in "Strings": check L"boo" == L"bar" failed [00B6FAA4 != 00B6FA90]
Can this be fixed ?
Is this unexpected behavior? B/Rgds Max