It would be nice if we could remove some of the custom defines in cpl_serv.h. First up might be FALSE/TRUE:
|
#ifndef FALSE |
|
# define FALSE 0 |
|
#endif |
|
|
|
#ifndef TRUE |
|
# define TRUE 1 |
|
#endif |
Can we assume at least C99 for libgeotiff?
I think we can also remove NULL:
#ifndef NULL
#define NULL 0
#endif
It would be nice if we could remove some of the custom defines in cpl_serv.h. First up might be FALSE/TRUE:
libgeotiff/libgeotiff/cpl_serv.h
Lines 73 to 79 in 5d5a36d
Can we assume at least C99 for libgeotiff?
I think we can also remove NULL: