Cleanup: use style for doxygen comment blocks

This commit is contained in:
Campbell Barton
2023-11-30 14:15:11 +11:00
parent b0746f4be2
commit 15db0cb446
32 changed files with 154 additions and 77 deletions

View File

@@ -18,10 +18,12 @@ extern "C" {
struct ReportList;
/** Error reporting: convert BKE_report (#ReportList) reports into python errors.
/**
* Error reporting: convert BKE_report (#ReportList) reports into python errors.
*
* \param clear: When `true`, #BKE_reports_free is called on the given `reports`, which should
* then be considered as 'freed' data and not used anymore. */
* then be considered as 'freed' data and not used anymore.
*/
short BPy_reports_to_error(struct ReportList *reports, PyObject *exception, bool clear);
/**
* A version of #BKE_report_write_file_fp that uses Python's stdout.