[PATCH] D43424: [clang-doc] Implement a (simple) Markdown generator

Roman Lebedev via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Sat Feb 17 03:45:17 PST 2018


lebedev.ri added a comment.

It will be good to have the tests for generators.



================
Comment at: clang-doc/generators/Generators.h:28
+public:
+  Generator(std::unique_ptr<InfoSet> &IS, StringRef Root, StringRef Format) : IS(IS), Root(Root), Format(Format) {};
+  virtual ~Generator() {};
----------------
Is this code (and the code in two parent Differentials) formatted with `clang-format`?
This line is certainly longer than 80 columns.


https://reviews.llvm.org/D43424





More information about the cfe-commits mailing list