From: trevor_hansen Date: Thu, 7 Jul 2011 06:57:48 +0000 (+0000) Subject: Remove clang warnings. X-Git-Url: https://git.unchartedbackwaters.co.uk/w/?a=commitdiff_plain;h=4c01cac4236aa3b82adb69c51cdb1e4596dc6d34;p=francis%2Fstp.git Remove clang warnings. git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1362 e59a4935-1847-0410-ae03-e826735625c1 --- diff --git a/src/AST/AST.h b/src/AST/AST.h index f47deef..bd5be69 100644 --- a/src/AST/AST.h +++ b/src/AST/AST.h @@ -18,8 +18,8 @@ namespace BEEV { - void FatalError(const char * str, const ASTNode& a, int w = 0); - void FatalError(const char * str); + void FatalError(const char * str, const ASTNode& a, int w = 0) __attribute__ ((noreturn)); + void FatalError(const char * str) __attribute__ ((noreturn)); void SortByExprNum(ASTVec& c); void SortByArith(ASTVec& c); bool exprless(const ASTNode n1, const ASTNode n2);