From 242af84c99d4ae35d4328ddc19cc9315c2251e93 Mon Sep 17 00:00:00 2001 From: hasufell Date: Thu, 15 May 2014 18:52:52 +0200 Subject: [PATCH] Remove obsolete macro It is already in half_edge.c and since it refers to a static function it has no place here. --- src/half_edge.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/half_edge.h b/src/half_edge.h index b5e2921..aa9530f 100644 --- a/src/half_edge.h +++ b/src/half_edge.h @@ -34,18 +34,6 @@ #include -/** - * Fault intolerant macro. Will abort the program if the called - * function failed. - */ -#define GET_ALL_EMANATING_EDGES(...) \ -{ \ - if (!get_all_emanating_edges(__VA_ARGS__)) { \ - fprintf(stderr, "Failure in get_all_emanating_edges()!\n"); \ - abort(); \ - } \ -} - /** * Fault intolerant macro. Will abort the program if the called * function failed.