This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
// ./bin/bin/g++ -std=c++0x -o std_checked std_checked.cpp
// LD_LIBRARY_PATH=bin/lib64 ./std_checked
#include "std-checked"
int
main( void )
{
std::vector<int> v(5);
std::cout << "v[5] = " << v[5] << std::endl;
return 0;
}
// ./bin/bin/g++ -std=c++0x -o std_all std_all.cpp
#include "std-all"
int
main( void )
{
std::vector<int> v(5);
std::cout << "v[5] = " << v[5] << std::endl;
return 0;
}
Attachment:
std-checked
Description: video/flv
Attachment:
std-all
Description: video/flv
Attachment:
CL_stdc++
Description: video/flv
Index: include/precompiled/stdc++.h =================================================================== --- include/precompiled/stdc++.h (revision 151652) +++ include/precompiled/stdc++.h (working copy) @@ -101,6 +101,7 @@ #include <condition_variable> #include <forward_list> #include <future> +#include <initializer_list> #include <mutex> #include <random> #include <ratio>
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |