diff options
| author | Stefan Boberg <[email protected]> | 2024-04-23 17:17:21 +0200 |
|---|---|---|
| committer | Dan Engelbrecht <[email protected]> | 2024-10-10 09:56:40 +0200 |
| commit | 321c5b22919254d0f2561bbf06d5e6a9458728c9 (patch) | |
| tree | e0772ebfb2e079db35b2cb534432777196593cd1 /src/zenbase | |
| parent | added some simple test code to exercise SDK bits (diff) | |
| download | zen-321c5b22919254d0f2561bbf06d5e6a9458728c9.tar.xz zen-321c5b22919254d0f2561bbf06d5e6a9458728c9.zip | |
silence C4996
Diffstat (limited to 'src/zenbase')
| -rw-r--r-- | src/zenbase/include/zenbase/zenbase.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/zenbase/include/zenbase/zenbase.h b/src/zenbase/include/zenbase/zenbase.h index 401bcd088..e6cedf070 100644 --- a/src/zenbase/include/zenbase/zenbase.h +++ b/src/zenbase/include/zenbase/zenbase.h @@ -83,6 +83,7 @@ __pragma(warning(disable : 4267)) /* C4267: '=': conversion from 'size_t' to 'US' */ \ __pragma(warning(disable : 4127)) /* C4127: conditional expression is constant */ \ __pragma(warning(disable : 4189)) /* C4189: local variable is initialized but not referenced */ \ + __pragma(warning(disable : 4996)) /* C4996: non-standard extensions */ \ __pragma(warning(disable : 5105)) /* C5105: macro expansion producing 'defined' has undefined behavior */ # elif ZEN_COMPILER_CLANG # define ZEN_THIRD_PARTY_INCLUDES_START \ |