summaryrefslogtreecommitdiff
path: root/cpp/test/IceXML/encoding/Client.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-06-23 21:17:04 +0000
committerMarc Laukien <marc@zeroc.com>2002-06-23 21:17:04 +0000
commit59788b8663f1f05a95b7afbbc6d2846dae11c96a (patch)
treec3ed292df270f11157decb83827d9af4144db52d /cpp/test/IceXML/encoding/Client.cpp
parentfile run.py was initially added on branch location. (diff)
downloadice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.tar.bz2
ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.tar.xz
ice-59788b8663f1f05a95b7afbbc6d2846dae11c96a.zip
removed spaces after keywords
Diffstat (limited to 'cpp/test/IceXML/encoding/Client.cpp')
-rw-r--r--cpp/test/IceXML/encoding/Client.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/test/IceXML/encoding/Client.cpp b/cpp/test/IceXML/encoding/Client.cpp
index 86444e72593..9bc31fcca3b 100644
--- a/cpp/test/IceXML/encoding/Client.cpp
+++ b/cpp/test/IceXML/encoding/Client.cpp
@@ -39,7 +39,7 @@ TestString(const Ice::CommunicatorPtr& communicator)
"hello &&''\"\"<<>>world",
""
};
- for (int i = 0; !strings[i].empty(); ++i)
+ for(int i = 0; !strings[i].empty(); ++i)
{
ostringstream os;
os << "<data>";
@@ -165,7 +165,7 @@ TestStruct4Seq(const Ice::CommunicatorPtr& communicator)
Test::Struct4Seq seqout;
Test::Struct4SeqHelper::ice_unmarshal(element, istream, seqout);
test(seqout.size() == seqin.size());
- while (!seqin.empty())
+ while(!seqin.empty())
{
Test::Struct4 sin = seqin.back();
Test::Struct4 sout = seqout.back();
@@ -203,7 +203,7 @@ TestStringStruct4Dict(const Ice::CommunicatorPtr& communicator)
Test::StringStruct4Dict dictout;
Test::StringStruct4DictHelper::ice_unmarshal(element, istream, dictout);
test(dictout.size() == dictin.size());
- for (Test::StringStruct4Dict::const_iterator p = dictin.begin(); p != dictin.end(); ++p)
+ for(Test::StringStruct4Dict::const_iterator p = dictin.begin(); p != dictin.end(); ++p)
{
Test::StringStruct4Dict::const_iterator q = dictout.find(p->first);
test(q != dictout.end());
@@ -246,7 +246,7 @@ TestStruct3Struct4Dict(const Ice::CommunicatorPtr& communicator)
Test::Struct3Struct4Dict dictout;
Test::Struct3Struct4DictHelper::ice_unmarshal(element, istream, dictout);
test(dictout.size() == dictin.size());
- for (Test::Struct3Struct4Dict::const_iterator p = dictin.begin(); p != dictin.end(); ++p)
+ for(Test::Struct3Struct4Dict::const_iterator p = dictin.begin(); p != dictin.end(); ++p)
{
Test::Struct3Struct4Dict::const_iterator q = dictout.find(p->first);
test(q != dictout.end());
@@ -294,7 +294,7 @@ TestColorSeq(const Ice::CommunicatorPtr& communicator)
Test::ColorSeq seqout;
Test::ColorSeqHelper::ice_unmarshal(element, istream, seqout);
test(seqout.size() == seqin.size());
- while (!seqin.empty())
+ while(!seqin.empty())
{
Test::Color sin = seqin.back();
Test::Color sout = seqout.back();
@@ -502,7 +502,7 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
// If the test is run out of the CWD then adjust the location of
// Test.xsd appropriately.
//
- if (argc > 1)
+ if(argc > 1)
{
string dir(argv[1]);
dir += '/';
@@ -580,7 +580,7 @@ main(int argc, char* argv[])
status = EXIT_FAILURE;
}
- if (communicator)
+ if(communicator)
{
try
{