summaryrefslogtreecommitdiff
path: root/cpp/test/Freeze/dbmap/Client.cpp
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2003-05-30 06:13:39 +0000
committerMichi Henning <michi@zeroc.com>2003-05-30 06:13:39 +0000
commit63539f257131942912257a7f0663e2e70aab890b (patch)
tree017f7a35470a26bbd0c66dd521cd55f361799056 /cpp/test/Freeze/dbmap/Client.cpp
parent*** empty log message *** (diff)
downloadice-63539f257131942912257a7f0663e2e70aab890b.tar.bz2
ice-63539f257131942912257a7f0663e2e70aab890b.tar.xz
ice-63539f257131942912257a7f0663e2e70aab890b.zip
Changed C++ mapping of Slice byte from char to unsigned char.
Diffstat (limited to 'cpp/test/Freeze/dbmap/Client.cpp')
-rw-r--r--cpp/test/Freeze/dbmap/Client.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Freeze/dbmap/Client.cpp b/cpp/test/Freeze/dbmap/Client.cpp
index 84466d982f6..007584ba22d 100644
--- a/cpp/test/Freeze/dbmap/Client.cpp
+++ b/cpp/test/Freeze/dbmap/Client.cpp
@@ -86,7 +86,7 @@ public:
typename MAP::iterator p = _map.begin();
assert(p != _map.end());
Byte b = p->second;
- test(b >= 0);
+ test(b < 128);
}
}