Fixed spelling error in header comments

This commit is contained in:
Jeffrey Walton 2015-07-19 10:57:12 -04:00
parent 90b5dc9e61
commit e874cd2ef8

4
misc.h
View File

@ -41,8 +41,8 @@
#include <byteswap.h>
#endif
// Used to supress some warnings in some header and implmentation files.
// Some platforms, like OpenBSD, use old compilers that don't understand -Wno-unknown-pragma.
// Used to supress some warnings in some header and implementation files.
// Some platforms, like CentOS and OpenBSD, use old compilers that don't understand -Wno-unknown-pragma.
#define GCC_DIAGNOSTIC_AWARE ((__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7)) || defined(__clang__))
// Used to manage function-level optimizations when working around compiler issues.