initial check in

This commit is contained in:
2012-12-06 21:43:03 +04:00
commit 4bc273824d
179 changed files with 29415 additions and 0 deletions

12
vector_bool_itor.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include <vector>
#include <algorithm>
int main ( void )
{
std::vector<bool> a;
a[0] = true;
a[1] = false;
std::sort( a.begin(), a.end() );
return 0;
}