$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-users] [test] BOOST_CHECK_EQUAL and wchar_t
From: Alexander (gutenev_at_[hidden])
Date: 2009-02-10 04:39:10
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 ?