Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug #30488061: MAKE DOXYGEN SHOULD NOT SORT LINES
There is a command called "make doxygen" (or, equivalently, "ninja doxygen") that runs Doxygen and does some filtering. However, in order to deduplicate lines, it also sorts them. This causes issues with multiline warnings, such as: sql/sql_executor.cc:1926: warning: The following parameters of GetIteratorForDerivedTable(THD *thd, QEP_TAB *qep_tab) are not documented: parameter 'thd' parameter 'qep_tab' which then get split apart, making them hard to read. Thus, stop sorting them; there are typically no duplicates anyway. Change-Id: I4c0d5b94247d1df1d5a16beba83c65cfce5e3019
- Loading branch information