Prazek added inline comments. ================ Comment at: test/clang-tidy/modernize-make-shared.cpp:81 @@ +80,3 @@ + + std::shared_ptr<int> R(new int()); + ---------------- hokein wrote: > Why can't this case convert to `std::shared_ptr<int> R = > std::make_shared<int>(new int())`? You mean std::shared_ptr<int> R = std::make_shared<int>()?
Repository: rL LLVM http://reviews.llvm.org/D19183 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits