From 0b8bb71897e7278efceb5ee34d3c5d8c3564703f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=80=D0=B0=D0=BD=D0=B8=D0=BC=D0=B8=D1=80=20=D0=9A?= =?UTF-8?q?=D0=B0=D1=80=D0=B0=D1=9F=D0=B8=D1=9B?= Date: Sat, 27 Apr 2024 21:58:56 -0700 Subject: [PATCH] Cleanup. --- include/bx/bx.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/bx/bx.h b/include/bx/bx.h index 361bf59..8da9816 100644 --- a/include/bx/bx.h +++ b/include/bx/bx.h @@ -117,7 +117,7 @@ namespace bx /// /// @param[in] _location Source code location where function is called. /// @param[in] _format Printf style format. - /// @param[in] ... Arguments for `_format` specification. + /// @param[in] _argList Arguments for `_format` specification. /// /// @returns True if assert should stop code execution, otherwise returns false. /// @@ -127,6 +127,8 @@ namespace bx /// /// @param[in] _assertHandlerFn Pointer to AssertHandlerFn function. /// + /// @remarks It can be set only once. This is usually done on application startup. + /// void setAssertHandler(AssertHandlerFn _assertHandlerFn); /// Assert function calls AssertHandlerFn.