Replace DNA_COUNT macro with AT_DNA_COUNT

This commit is contained in:
Jack Andersen
2018-02-24 22:22:35 -10:00
parent 17a0959dbd
commit 73a0ae0d00
2 changed files with 6 additions and 6 deletions

View File

@@ -143,9 +143,9 @@ struct DNAVYaml : DNAV<DNAE>
/** Macro to supply count variable to atdna and mute it for other compilers */
#ifdef __clang__
#define DNA_COUNT(cnt) sizeof(cnt)
#define AT_DNA_COUNT(cnt) sizeof(cnt)
#else
#define DNA_COUNT(cnt) 0
#define AT_DNA_COUNT(cnt) 0
#endif
}