Is it worth using std::tr1 in production?
Posted
by flashnik
on Stack Overflow
See other posts from Stack Overflow
or by flashnik
Published on 2010-03-08T12:30:28Z
Indexed on
2010/03/08
12:36 UTC
Read the original article
Hit count: 401
I'm using MS VC 2008 and for some projects Intel C++ compiler 11.0. Is it worth using tr1 features in production? Will they stay in new standard?
For example, now I use stdext::hash_map
. TR1 defines std::tr1::unordered_map
. But in MS implementation unordered_map
is just theirs stdext::hash_map
, templatized in another way.
© Stack Overflow or respective owner