mirror of
https://github.com/introlab/rtabmap.git
synced 2026-09-02 09:30:25 +08:00
git-svn-id: http://rtabmap.googlecode.com/svn/branches/0.3/rtabmap@52 f169173b-cf89-36c8-b27e-44dbe73f0c83
24 lines
533 B
C++
24 lines
533 B
C++
#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
|