Remove obsolete macro

It is already in half_edge.c and since it refers to a static
function it has no place here.
This commit is contained in:
hasufell 2014-05-15 18:52:52 +02:00
parent aaa485f072
commit 242af84c99
No known key found for this signature in database
GPG Key ID: 220CD1C5BDEED020
1 changed files with 0 additions and 12 deletions

View File

@ -34,18 +34,6 @@
#include <stdint.h>
/**
* 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.