Fix dbg_* comments to reflect reality

They also work in release mode.
This commit is contained in:
heinrich5991 2021-02-23 22:15:20 +01:00
parent deb4917563
commit 406bb85873
2 changed files with 4 additions and 4 deletions

View file

@ -118,7 +118,7 @@ void dbg_assert_imp(const char *filename, int line, int test, const char *msg)
}
}
void dbg_break_imp()
void dbg_break()
{
#ifdef __GNUC__
__builtin_trap();

View file

@ -42,7 +42,7 @@ extern "C" {
msg - Message that should be printed if the test fails.
Remarks:
Does nothing in release version of the library.
Also works in release mode.
See Also:
<dbg_break>
@ -67,7 +67,7 @@ void dbg_assert_imp(const char *filename, int line, int test, const char *msg);
Breaks into the debugger.
Remarks:
Does nothing in release version of the library.
Also works in release mode.
See Also:
<dbg_assert>
@ -84,7 +84,7 @@ void dbg_break();
fmt - A printf styled format string.
Remarks:
Does nothing in release version of the library.
Also works in release mode.
See Also:
<dbg_assert>