Bläddra i källkod

Sync SDL3 wiki -> header

SDL Wiki Bot 1 år sedan
förälder
incheckning
11de629dd2
1 ändrade filer med 10 tillägg och 11 borttagningar
  1. 10 11
      include/SDL3/SDL_assert.h

+ 10 - 11
include/SDL3/SDL_assert.h

@@ -48,22 +48,21 @@ extern "C" {
 #endif /* SDL_ASSERT_LEVEL */
 
 #ifdef SDL_WIKI_DOCUMENTATION_SECTION
+
 /**
  * Attempt to tell an attached debugger to pause.
  *
- * This allows an app to programmatically halt ("break") the debugger
- * as if it had hit a breakpoint, allowing the developer to examine
- * program state, etc.
+ * This allows an app to programmatically halt ("break") the debugger as if it
+ * had hit a breakpoint, allowing the developer to examine program state, etc.
  *
- * This is a macro and not first class functions so that the debugger
- * breaks on the source code line that used SDL_TriggerBreakpoint and
- * not in some random guts of SDL. SDL_assert uses this macro for the
- * same reason.
+ * This is a macro and not first class functions so that the debugger breaks
+ * on the source code line that used SDL_TriggerBreakpoint and not in some
+ * random guts of SDL. SDL_assert uses this macro for the same reason.
  *
- * If the program is not running under a debugger, SDL_TriggerBreakpoint
- * will likely terminate the app, possibly without warning. If the
- * current platform isn't supported (SDL doesn't know how to trigger a
- * breakpoint), this macro does nothing.
+ * If the program is not running under a debugger, SDL_TriggerBreakpoint will
+ * likely terminate the app, possibly without warning. If the current platform
+ * isn't supported (SDL doesn't know how to trigger a breakpoint), this macro
+ * does nothing.
  *
  * \threadsafety It is safe to call this function from any thread.
  *