diff options
author | Jose <jose@zeroc.com> | 2015-06-10 17:49:03 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-06-10 17:49:03 +0200 |
commit | 891b822101fb8144a36af4e02e120f1b86228aa6 (patch) | |
tree | 3fec3308359702b45a7b8f4b49ae0ceec26e51d0 | |
parent | Fix issue with IceSSL.InitOpenSSL and OpenSSLEngine destructor (diff) | |
download | ice-1.0.1-icehashpassword.tar.bz2 ice-1.0.1-icehashpassword.tar.xz ice-1.0.1-icehashpassword.zip |
Fix issue with non initialized values in Slice/macros testv1.0.1-icehashpassword
-rw-r--r-- | cpp/test/Slice/macros/Client.cpp | 4 | ||||
-rw-r--r-- | cpp/test/Slice/macros/Test.ice | 6 |
2 files changed, 0 insertions, 10 deletions
diff --git a/cpp/test/Slice/macros/Client.cpp b/cpp/test/Slice/macros/Client.cpp index 1f15e4e91a1..36c26e47b7a 100644 --- a/cpp/test/Slice/macros/Client.cpp +++ b/cpp/test/Slice/macros/Client.cpp @@ -25,10 +25,6 @@ main(int argc, char* argv[]) test(d->x == 10); test(d->y == 10); - NoDefaultPtr nd = new NoDefault(); - test(nd->x != 10); - test(nd->y != 10); - CppOnlyPtr c = new CppOnly(); test(c->lang == "cpp"); test(c->version == ICE_INT_VERSION); diff --git a/cpp/test/Slice/macros/Test.ice b/cpp/test/Slice/macros/Test.ice index 8687f136c55..405c9c2240f 100644 --- a/cpp/test/Slice/macros/Test.ice +++ b/cpp/test/Slice/macros/Test.ice @@ -34,12 +34,6 @@ class Default int y DEFAULT(10); }; -class NoDefault -{ - int x NODEFAULT(10); - int y NODEFAULT(10); -}; - // // This class is only defined when compiling with slice2cpp. // |