#include #include int main ( void ) { std::vector a; a[0] = true; a[1] = false; std::sort( a.begin(), a.end() ); return 0; }