diff options
author | Michael Ferris <mike.ferris@hotmail.com> | 2018-03-22 17:32:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-22 17:32:26 -0700 |
commit | 90fb9eefa9c2f36481e575da591e9ca521bf724f (patch) | |
tree | 9c0d7513b96fd22c53cdef45c1d341e9c8fea6b2 /src/config.h.in | |
parent | 802f56ca2d1e3812796941e027e8ef97b9753130 (diff) | |
download | wabt-90fb9eefa9c2f36481e575da591e9ca521bf724f.tar.gz wabt-90fb9eefa9c2f36481e575da591e9ca521bf724f.tar.bz2 wabt-90fb9eefa9c2f36481e575da591e9ca521bf724f.zip |
Windows remove _Check_Return_ annotation (#817)
Remove _Check_Return_ annotation on Windows because that annotation must be a prefix to the function not a suffix which was breaking the code analysis on binary-reader.cc.
Couldn't find a way to reconcile clang/gcc/msvc to all use a prefix or suffix for that annotation, furthermore it is not used a lot in the project anyway.
Diffstat (limited to 'src/config.h.in')
-rw-r--r-- | src/config.h.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.h.in b/src/config.h.in index 6f2e2085..6f962d91 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -103,7 +103,7 @@ #include <cstring> #define WABT_UNUSED -#define WABT_WARN_UNUSED _Check_return_ +#define WABT_WARN_UNUSED #define WABT_INLINE __inline #define WABT_STATIC_ASSERT(x) _STATIC_ASSERT(x) #define WABT_UNLIKELY(x) (x) |