From: Andre Noll Date: Mon, 7 Mar 2022 21:30:26 +0000 (+0100) Subject: score.c: Remove pointless comments. X-Git-Tag: v0.7.1~30 X-Git-Url: http://git.tuebingen.mpg.de/?a=commitdiff_plain;h=9eaba2ab44a977791c3644312bd24acd9b3f668c;p=paraslash.git 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. --- 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 */