Skip to content

Commit

Permalink
Fix warnings with VS2019 in C++20 mode (#4173)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocornut committed May 25, 2021
1 parent 4c420f3 commit 04fd507
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion imgui_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ Index of this file:
#pragma warning (disable: 4251) // class 'xxx' needs to have dll-interface to be used by clients of struct 'xxx' // when IMGUI_API is set to__declspec(dllexport)
#pragma warning (disable: 26812) // The enum type 'xxx' is unscoped. Prefer 'enum class' over 'enum' (Enum.3). [MSVC Static Analyzer)
#pragma warning (disable: 26495) // [Static Analyzer] Variable 'XXX' is uninitialized. Always initialize a member variable (type.6).

#if defined(_MSC_VER) && _MSC_VER >= 1922 // MSVC 2019 16.2 or later
#pragma warning (disable: 5054) // operator '|': deprecated between enumerations of different types
#endif
#endif

// Clang/GCC warnings with -Weverything
Expand Down

0 comments on commit 04fd507

Please sign in to comment.