Skip to content

Commit 39e6ebb

Browse files
committed
Remove more doxygen comments
1 parent 96f1813 commit 39e6ebb

1 file changed

Lines changed: 0 additions & 24 deletions

File tree

src/twbl/teeworlds/base/system.cpp

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -140,18 +140,6 @@ void dbg_assert_imp(const char *filename, int line, bool test, const char *msg)
140140
}
141141
}
142142

143-
/**
144-
* @ingroup Debug
145-
*
146-
* Breaks into the debugger based on a test.
147-
*
148-
* @param test Result of the test.
149-
* @param msg Message that should be printed if the test fails.
150-
*
151-
* @remark Also works in release mode.
152-
*
153-
* @see dbg_break
154-
*/
155143
#define dbg_assert(test, msg) dbg_assert_imp(__FILE__, __LINE__, test, msg)
156144
void dbg_assert_imp(const char *filename, int line, bool test, const char *msg);
157145

@@ -209,18 +197,6 @@ int fs_file_time(const char *name, time_t *created, time_t *modified)
209197
return 0;
210198
}
211199

212-
/**
213-
* Checks if a file exists.
214-
*
215-
* @ingroup Filesystem
216-
*
217-
* @param path the path to check.
218-
*
219-
* @return 1 if a file with the given path exists,
220-
* 0 on failure or if the file does not exist.
221-
*
222-
* @remark The strings are treated as zero-terminated strings.
223-
*/
224200
int fs_is_file(const char *path)
225201
{
226202
#if defined(CONF_FAMILY_WINDOWS)

0 commit comments

Comments
 (0)