lebedev.ri added inline comments.
================ Comment at: clang-doc/Representation.h:79 + std::string Filename; +}; + ---------------- Hmm, have you tried adding a constructor here? ``` struct Location { int LineNumber; std::string Filename; Location() = default; Location(int LineNumber_, std::string Filename_) : LineNumber(LineNumber_), Filename(std::move(Filename_)) {} }; ``` ? https://reviews.llvm.org/D41102 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits