Should I switch from using boost::shared_ptr to std::shared_ptr?
问题 I would like to enable support for C++0x in GCC with -std=c++0x . I don't absolutely necessarily need any of the currently supported C++11 features in GCC 4.5 (and soon 4.6), but I would like to start getting used to them. For example, in a few places where I use iterators, an auto type would be useful. But again, I don't need any of the currently supported features. The goal here is to encourage me to incorporate the features of the new standard into my programming "vocabulary". From what