Skip to content

Commit

Permalink
tests: Remove unused variable warning in property composition test
Browse files Browse the repository at this point in the history
  • Loading branch information
snrkiwi committed Mar 25, 2014
1 parent 209d6cc commit 6cf8c90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/property_composition_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ namespace RTT {
bool operator==(const PropertyBag& a, const PropertyBag& b) {
if( a.size() == b.size() ) {
PropertyBag::const_iterator ita = a.begin();
PropertyBag::const_iterator itb = b.begin();
// PropertyBag::const_iterator itb = b.begin();
while ( ita != a.end() ) {
//if ( (*ita)->equals(*itb) )
return false;
Expand Down

0 comments on commit 6cf8c90

Please sign in to comment.