diff --git a/clang-tools-extra/clang-doc/HTMLGenerator.cpp b/clang-tools-extra/clang-doc/HTMLGenerator.cpp index c4df336418484..f6b5e8926f903 100644 --- a/clang-tools-extra/clang-doc/HTMLGenerator.cpp +++ b/clang-tools-extra/clang-doc/HTMLGenerator.cpp @@ -983,7 +983,7 @@ static llvm::Error serializeIndex(ClangDocContext &CDCtx) { llvm::json::OStream J(OS, 2); std::function IndexToJSON = [&](const Index &I) { J.object([&] { - //J.attribute("USR", toHex(llvm::toStringRef(I.USR))); + J.attribute("USR", toHex(llvm::toStringRef(I.USR))); J.attribute("Name", I.Name); J.attribute("RefType", getRefType(I.RefType)); J.attribute("Path", I.getRelativeFilePath(""));