diff options
| author | Pierrick Bouvier <pierrick.bouvier@linaro.org> | 2024-09-18 21:46:38 -0700 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2024-09-24 13:53:35 +0200 |
| commit | f52e6308251b53e9a283c842030b4eea32872577 (patch) | |
| tree | 34c6f37bbb2decdf15128b16a74bf21632894568 /qobject/qnum.c | |
| parent | d13526f77a6266eb09ccc638eb6cd205d4b69a80 (diff) | |
| download | focaccia-qemu-f52e6308251b53e9a283c842030b4eea32872577.tar.gz focaccia-qemu-f52e6308251b53e9a283c842030b4eea32872577.zip | |
qobject: remove return after g_assert_not_reached()
This patch is part of a series that moves towards a consistent use of g_assert_not_reached() rather than an ad hoc mix of different assertion mechanisms. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Message-ID: <20240919044641.386068-32-pierrick.bouvier@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'qobject/qnum.c')
| -rw-r--r-- | qobject/qnum.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/qobject/qnum.c b/qobject/qnum.c index 2138b563a9..dd8ea49565 100644 --- a/qobject/qnum.c +++ b/qobject/qnum.c @@ -86,7 +86,6 @@ bool qnum_get_try_int(const QNum *qn, int64_t *val) } g_assert_not_reached(); - return false; } /** @@ -124,7 +123,6 @@ bool qnum_get_try_uint(const QNum *qn, uint64_t *val) } g_assert_not_reached(); - return false; } /** @@ -157,7 +155,6 @@ double qnum_get_double(QNum *qn) } g_assert_not_reached(); - return 0.0; } char *qnum_to_string(QNum *qn) @@ -173,7 +170,6 @@ char *qnum_to_string(QNum *qn) } g_assert_not_reached(); - return NULL; } /** |