diff options
author | Jesse <jspears@umd.edu> | 2011-12-14 14:43:58 -0500 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2011-12-15 16:38:50 +0000 |
commit | 6a8f6c4b1324e28c598a065683103ac2ef8ea3fc (patch) | |
tree | d59cda7401565170e32c7d06af9755f3110651fd /xml2cmp | |
parent | 63a817d2fb00f248053566c8b8364667432fa8b3 (diff) |
Removed extra semicolons
Diffstat (limited to 'xml2cmp')
-rw-r--r-- | xml2cmp/source/xcd/xmltree.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xml2cmp/source/xcd/xmltree.cxx b/xml2cmp/source/xcd/xmltree.cxx index 6c823a1d8054..58e7c9278688 100644 --- a/xml2cmp/source/xcd/xmltree.cxx +++ b/xml2cmp/source/xcd/xmltree.cxx @@ -156,7 +156,7 @@ CompDescrList::Create_and_Add_NewElement() void CompDescrList::Get_SupportedServices( List< const MultipleTextElement * > & o_rResult ) const { - unsigned i_max = aCDs.size();; + unsigned i_max = aCDs.size(); for (unsigned i = 0; i < i_max; ++i) { o_rResult.push_back(& aCDs[i]->SupportedServices()); @@ -166,7 +166,7 @@ CompDescrList::Get_SupportedServices( List< const MultipleTextElement * > & o_rR void CompDescrList::Get_Types( List< const MultipleTextElement * > & o_rResult ) const { - unsigned i_max = aCDs.size();; + unsigned i_max = aCDs.size(); for (unsigned i = 0; i < i_max; ++i) { o_rResult.push_back(& aCDs[i]->Types()); @@ -176,7 +176,7 @@ CompDescrList::Get_Types( List< const MultipleTextElement * > & o_rResult ) cons void CompDescrList::Get_ServiceDependencies( List< const MultipleTextElement * > & o_rResult ) const { - unsigned i_max = aCDs.size();; + unsigned i_max = aCDs.size(); for (unsigned i = 0; i < i_max; ++i) { o_rResult.push_back(& aCDs[i]->ServiceDependencies()); |