Is anyone using the GCC 4.4.0 C++0x support in production? I'm thinking about using it with the latest MinGW, but I'm not sure if it's mature enough.
I'm interested in:
- TR1 support
- auto
- initializer lists
|
3
|
|||||
|
|
|
IMHO, TR1 support and I would be a bit more hesitant about using |
||
|
|
|
|
I'm not using GCC 4.4.0 C++0x support in production but I'm using the TR1 features with the help of the Boost Library http://www.boost.org/. The Boost Library is well tested and often used in production environments. If you convert to the C++0x standard later the only thing you have to do is changing your include Directives http://www.boost.org/doc/libs/1%5F40%5F0/doc/html/boost%5Ftr1.html. In my opinion it's currently better to use the Boost Library until the standard is finished. It's a much more compiler independent way. |
||
|
|