Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <bastien@blender.org>2022-05-17 16:25:03 +0300
committerBastien Montagne <bastien@blender.org>2022-05-17 17:06:54 +0300
commit7a3122901166cc2200460a5659aa8b28dae70483 (patch)
treeb0ce0ef633e4d1f23dcf2fa603e0746937cec2e1 /source/blender/blenlib/intern/BLI_assert.c
parentfb2ae6b8c5bcab778f8b07c9d527abf5c3c36e0d (diff)
Cleanup: Use `BLI_assert_unreachable()` as example in comment of `_BLI_assert_abort`.
Using `BLI_assert(0)` should typically be avoided now that we have `BLI_assert_unreachable`...
Diffstat (limited to 'source/blender/blenlib/intern/BLI_assert.c')
-rw-r--r--source/blender/blenlib/intern/BLI_assert.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/BLI_assert.c b/source/blender/blenlib/intern/BLI_assert.c
index 2ebeba43dbe..96c16b47214 100644
--- a/source/blender/blenlib/intern/BLI_assert.c
+++ b/source/blender/blenlib/intern/BLI_assert.c
@@ -40,7 +40,7 @@ void _BLI_assert_abort(void)
/* Wrap to remove 'noreturn' attribute since this suppresses missing return statements,
* allowing changes to debug builds to accidentally to break release builds.
*
- * For example `BLI_assert(0);` at the end of a function that returns a value,
+ * For example `BLI_assert_unreachable();` at the end of a function that returns a value,
* will hide that it's missing a return. */
abort();