Skip to content

Commit 6beec2c

Browse files
committed
Fix doc failures
1 parent e4ed9cb commit 6beec2c

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

src/log.c

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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
*/
130128
void 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
*/
188185
void 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
*/
239234
void 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
*/
260253
void nomp_profile_finalize(void) {
261254
for (unsigned i = 0; i < time_logs_n; i++)

0 commit comments

Comments
 (0)