bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: test-verify.c: avoid -Wmissing-declarations warnings


From: Bruno Haible
Subject: Re: test-verify.c: avoid -Wmissing-declarations warnings
Date: Mon, 02 Nov 2020 01:34:35 +0100
User-agent: KMail/5.1.3 (Linux/4.4.0-193-generic; KDE/5.18.0; x86_64; ; )

The patch introduced a compilation error on MSVC, because the declaration and
the definition of 'test_assume_noreturn' are not consistent.  This patch should
fix it.


2020-11-01  Bruno Haible  <bruno@clisp.org>

        verify tests: Fix compilation error with MSVC (regression 2020-10-30).
        * tests/test-verify.c (test_assume_noreturn): Fix declaration.

diff --git a/tests/test-verify.c b/tests/test-verify.c
index 1ed78c9..0429a19 100644
--- a/tests/test-verify.c
+++ b/tests/test-verify.c
@@ -76,7 +76,7 @@ typedef struct { unsigned int context : 4; unsigned int halt 
: 1; } state;
 
 void test_assume_expressions (state *s);
 int test_assume_optimization (int x);
-void test_assume_noreturn (void);
+_Noreturn void test_assume_noreturn (void);
 
 void
 test_assume_expressions (state *s)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]