mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-21 06:37:42 +01:00
Sun CC wants explicit cast &^(
This commit is contained in:
parent
d0d667af56
commit
4856f84b21
@ -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()));
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user