# HG changeset patch # User Tom Fredrik Blenning Klaussen # Date 1361024787 -3600 # Node ID 19d8825ec5015987904ff2e7cf622ed22cda8e80 # Parent c9447697609fef35e44fe1c2bac2116906bc7718 Add define for code that can never be reached. To avoid the line being counted. diff -r c9447697609f -r 19d8825ec501 Exception/Exception.hpp --- a/Exception/Exception.hpp Thu Jan 31 20:33:01 2013 +0100 +++ b/Exception/Exception.hpp Sat Feb 16 15:26:27 2013 +0100 @@ -2,6 +2,7 @@ #define EXCEPTION_HPP #define NORETURN __attribute__ ((noreturn)) +#define UNREACHABLE() abort() #include