summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '3rdParty/CppUnit/cppunit/tools/Algorithm.h')
m---------3rdParty/CppUnit0
-rw-r--r--3rdParty/CppUnit/cppunit/tools/Algorithm.h23
2 files changed, 0 insertions, 23 deletions
diff --git a/3rdParty/CppUnit b/3rdParty/CppUnit
new file mode 160000
+Subproject b4c34eb947c6497c6387c55c7581ec875f4e7d4
diff --git a/3rdParty/CppUnit/cppunit/tools/Algorithm.h b/3rdParty/CppUnit/cppunit/tools/Algorithm.h
deleted file mode 100644
index e5746a2..0000000
--- a/3rdParty/CppUnit/cppunit/tools/Algorithm.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef CPPUNIT_TOOLS_ALGORITHM_H_INCLUDED
-#define CPPUNIT_TOOLS_ALGORITHM_H_INCLUDED
-
-#include <cppunit/Portability.h>
-
-CPPUNIT_NS_BEGIN
-
-template<class SequenceType, class ValueType>
-void
-removeFromSequence( SequenceType &sequence,
- const ValueType &valueToRemove )
-{
- for ( unsigned int index =0; index < sequence.size(); ++index )
- {
- if ( sequence[ index ] == valueToRemove )
- sequence.erase( sequence.begin() + index );
- }
-}
-
-CPPUNIT_NS_END
-
-
-#endif // CPPUNIT_TOOLS_ALGORITHM_H_INCLUDED