On 06/28/2011 02:33 PM, Guobao Shen wrote: > I have a project which heavily relies on std::tr1::shared_ptr<>. > However, it looks current gccxml does not support std::tr1.
As noted here: http://www.gccxml.org/pipermail/gccxml/2010-November/001435.html http://www.gccxml.org/pipermail/gccxml/2011-March/001438.html we have no plans to add support for C++0x features. The boost implementation does not depend on them so it works. The GNU implementation depends on C++0x for its tr1 (for type_traits, at least, IIRC) and thus is not supported. For parsing anything using C++0x I suggest using Clang: http://clang.llvm.org/ -Brad _______________________________________________ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Follow this link to subscribe/unsubscribe: http://www.gccxml.org/mailman/listinfo/gccxml
