Skip to content
Snippets Groups Projects
Commit 8d6df6eb authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

Fix unused macro in cdi app.

parent 6e5ea545
No related branches found
No related tags found
No related merge requests found
......@@ -30,9 +30,8 @@ int vlistInqVarMissvalUsed(int vlistID, int varID);
# define DBL_IS_EQUAL(x,y) (DBL_IS_NAN(x)||DBL_IS_NAN(y)?(DBL_IS_NAN(x)&&DBL_IS_NAN(y)?1:0):!(x < y || y < x))
#endif
#ifndef IS_EQUAL
#ifndef IS_NOT_EQUAL
# define IS_NOT_EQUAL(x,y) (x < y || y < x)
# define IS_EQUAL(x,y) (!IS_NOT_EQUAL(x,y))
#endif
#ifndef HOST_ENDIANNESS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment