@@ -124,8 +124,6 @@ int nomp_get_err_no(unsigned id) {
124124/**
125125 * @ingroup nomp_log_utils
126126 * @brief Free variables used to keep track of logs.
127- *
128- * @return void
129127 */
130128void nomp_log_finalize (void ) {
131129 for (unsigned i = 0 ; i < logs_n ; i ++ )
@@ -183,7 +181,6 @@ static unsigned find_time_log(const char *entry) {
183181 * @param[in] toggle Toggles the timer between tick (start of timing) and a tock
184182 * (end of timing).
185183 * @param[in] sync Execute nomp_sync when toggling off the timer.
186- * @return void
187184 */
188185void nomp_profile (const char * name , const int toggle , const int sync ) {
189186 if (profile_level == 0 ) return ;
@@ -233,8 +230,6 @@ void nomp_profile(const char *name, const int toggle, const int sync) {
233230 * @ingroup nomp_profiler_utils
234231 * @brief Prints all the execution times recorded by the program.
235232 * This function is executed only when the `--nomp-profile` is provided.
236- *
237- * @return int
238233 */
239234void nomp_profile_result (void ) {
240235 if (profile_level == 0 ) return ;
@@ -254,8 +249,6 @@ void nomp_profile_result(void) {
254249/**
255250 * @ingroup nomp_profiler_utils
256251 * @brief Free variables used to keep track of time logs.
257- *
258- * @return void
259252 */
260253void nomp_profile_finalize (void ) {
261254 for (unsigned i = 0 ; i < time_logs_n ; i ++ )
0 commit comments