From 9eaba2ab44a977791c3644312bd24acd9b3f668c Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Mon, 7 Mar 2022 22:30:26 +0100 Subject: [PATCH 1/1] score.c: Remove pointless comments. Static functions don't need doxygen comments. The two comments removed by this commit did not add any value anyway. --- score.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/score.c b/score.c index 823cf28d..7eb92259 100644 --- a/score.c +++ b/score.c @@ -302,20 +302,12 @@ int row_belongs_to_score_table(const struct osl_row *aft_row, unsigned *rank) return 1; } -/* Close the score table. */ static void score_close(void) { osl_close_table(score_table, OSL_FREE_VOLATILE); score_table = NULL; } -/** - * Open the score table. - * - * \param dir Unused. - * - * \return The return value of the underlying call to osl_open_table(). - */ static int score_open(__a_unused const char *dir) { score_table_desc.dir = NULL; /* this table has only volatile columns */ -- 2.39.2