http://xyst.i2p/DEBUG/cppcheck/161.html
Test unique making the elements of a container unique template <> template <> void ContainerUtil_object :: test < 2 > () { set_test_name ( "unique" ); // std::vector std :: vector < int > v {{ 1 , 1 , 2 , 6 , -2 , 3 , 5 , 5 }}, correct {{ -2 , 1 , 2 , 3 , 5 , 6 }}; tk :: unique ( v ); ensure ( "make vector unique incorrect" , v == correct ); // std::string std :: string s ( "blahblah" ); tk :: unique ( s...