diff options
| author | Baptiste Lepilleur <gaiacrtn@free.fr> | 2003-03-11 19:23:18 +0000 |
|---|---|---|
| committer | Baptiste Lepilleur <gaiacrtn@free.fr> | 2003-03-11 19:23:18 +0000 |
| commit | 0488bd44fb51fcc4a37764c20556fab68b429d2f (patch) | |
| tree | 9510f02b7f768932f2201fd8e2d9ea7a98e27b0c /include/cppunit/tools/Algorithm.h | |
| parent | cae3d20badb7edef6de1cda979c719bd0d65b655 (diff) | |
| download | cppunit-0488bd44fb51fcc4a37764c20556fab68b429d2f.tar.gz | |
fixed typos
Diffstat (limited to 'include/cppunit/tools/Algorithm.h')
| -rw-r--r-- | include/cppunit/tools/Algorithm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/cppunit/tools/Algorithm.h b/include/cppunit/tools/Algorithm.h index 2eb1c6f..1d10ca5 100644 --- a/include/cppunit/tools/Algorithm.h +++ b/include/cppunit/tools/Algorithm.h @@ -8,10 +8,10 @@ CPPUNIT_NS_BEGIN template<class SequenceType, class ValueType> void removeFromSequence( SequenceType &sequence, - const ItemType &valueToRemove ) + const ValueType &valueToRemove ) { - Sequence::iterator it = sequence.begin(); - Sequence::iterator itEnd = sequence.end(); + SequenceType::iterator it = sequence.begin(); + SequenceType::iterator itEnd = sequence.end(); while ( it != itEnd ) { if ( *it == valueToRemove ) |
