summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2023-01-10 19:26:51 +0100
committersfan5 <sfan5@live.de>2023-01-12 22:02:07 +0100
commit1201d59f0b5b8acc93f15904b745ec342548f9c1 (patch)
tree5eba78a5fa4dd68b5c750eb2b6ab5bc76d92ffd0 /misc
parent7b03cd367dd5416a4728ccea7e47dcd2827cbab7 (diff)
downloadmpv-1201d59f0b5b8acc93f15904b745ec342548f9c1.tar.bz2
mpv-1201d59f0b5b8acc93f15904b745ec342548f9c1.tar.xz
various: replace abort() with MP_ASSERT_UNREACHABLE() where appropriate
In debug mode the macro causes an assertion failure. In release mode it works differently and tells the compiler that it can assume the codepath will never execute. For this reason I was conversative in replacing it, e.g. in mpv-internal code that exhausts all valid values of an enum or when a condition is clear from directly preceding code.
Diffstat (limited to 'misc')
-rw-r--r--misc/node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/node.c b/misc/node.c
index 9b45291a5f..3b982ed24a 100644
--- a/misc/node.c
+++ b/misc/node.c
@@ -136,7 +136,7 @@ bool equal_mpv_value(const void *a, const void *b, mpv_format format)
return true;
}
}
- abort(); // supposed to be able to handle all defined types
+ MP_ASSERT_UNREACHABLE(); // supposed to be able to handle all defined types
}
// Remarks see equal_mpv_value().