From: brarcher Date: Sat, 25 Jan 2014 18:18:21 +0000 (+0000) Subject: removing -Wmissing-noreturn X-Git-Tag: 0.10.0~149 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6c06a93faf2b4c68cb5c3e2b37d74e81466882be;p=check removing -Wmissing-noreturn This warnings points out that many unit tests could be declared as 'noreturn'. As all tests could or could not return (it is up to them), the warning is being dropped. git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@1068 64e312b2-a51f-0410-8e61-82d0ca0eb02a --- diff --git a/configure.ac b/configure.ac index b590f59..00a7efb 100644 --- a/configure.ac +++ b/configure.ac @@ -153,7 +153,6 @@ AX_CFLAGS_ADD([-Winit-self]) AX_CFLAGS_ADD([-Wmissing-include-dirs]) AX_CFLAGS_ADD([-Wswitch-default]) AX_CFLAGS_ADD([-Wunknown-pragmas]) -AX_CFLAGS_ADD([-Wmissing-noreturn]) AC_CHECK_PROGS(GCOV, gcov, false) AC_CHECK_PROGS(LCOV, lcov, false)