zeyi2 wrote: ``` Warning, treated as error: /home/runner/work/llvm-project/llvm-project/clang-tools-extra/docs/clang-tidy/checks/modernize/use-std-erase.rst:15:Malformed table. Text in column margin in table line 5.
=========================================================== =================== Expression Replacement ----------------------------------------------------------- ------------------- ``v.erase(remove(v.begin(), v.end(), 5), v.end())`` ``erase(v, 5)`` ``l.erase(remove_if(l.begin(), l.end(), func), l.end())`` ``erase_if(l, func)`` ========================================================== =================== ``` Documentation build seems to be failing, would you please fix it? (We can ignore the `doc8` failure for now, I can add the file to whitelist after this PR is merged) https://github.com/llvm/llvm-project/pull/193407 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
