Sun CC wants explicit cast &^(

This commit is contained in:
Aleksandar Fabijanic 2009-11-13 13:47:57 +00:00
parent d0d667af56
commit 4856f84b21

View File

@ -323,12 +323,12 @@ void DataTest::testCLOB()
assert (blobChrStr != blobNumStr);
Var vLOB = blobNumStr;
blobChrStr = vLOB;
blobChrStr = (CLOB) vLOB;
assert (blobChrStr == blobNumStr);
std::string xyz = "xyz";
vLOB = xyz;
blobChrStr = vLOB;
blobChrStr = (CLOB) vLOB;
assert (0 == std::strncmp(xyz.c_str(), blobChrStr.rawContent(), blobChrStr.size()));
}