important question about standard library

Hi everybody,
I wanna ask, if there is anyway to add std_lib_facilities.h to the standard library ?
Last edited on
Technically yes, the procedure for adding something to C++ is outlined here: https://isocpp.org/std/submit-a-proposal

In practice, it is very unlikely that such a proposal would pass, since it does not add anything programmers can't do themselves with minimum effort.
If you mean that you simply want to be able to #include <std_lib_facilities.h> in your program, you'll need to add the directory containing the std_lib_facilities.h file to your include path.

With GCC at the command-line, add it with the -I flag:

    g++ my_program.cpp -I/path/to/dir ...

With an IDE, go to your project options and look for the compiler include directories and add it that way.

Good luck!
Topic archived. No new replies allowed.