I'd like to use unordered_set without installing Boost. I tried to add --std=gnu++0x
but it is not a recognized option. Does v4.1.2 include unordered_set? If so, how do I get the header file for it?
This is a Centos 4 machine.
unordered_set
is in the purview of the standard C++ library, not gcc
, the compiler (although most programs built using gcc
are linked against libstdc++
).
The way you generally include it is #include <tr1/unordered_set>
. Then, to use it, you must either do a using std::tr1::unordered_set;
or qualify the name each time.
The C++ standard version you choose to use doesn't have much effect because that's the language standard, and the availability of standard library constructs is semi-independent.