Skip to content

Commit

Permalink
Backends: OpenGL3: Fixed unsupported option warning with apple clang (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
cheyao committed Jul 22, 2024
1 parent 605c8d7 commit fe09ebb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions backends/imgui_impl_opengl3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@
// Clang/GCC warnings with -Weverything
#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunknown-warning-option" // warning: ignore unknown flags
#pragma clang diagnostic ignored "-Wold-style-cast" // warning: use of old-style cast
#pragma clang diagnostic ignored "-Wsign-conversion" // warning: implicit conversion changes signedness
#pragma clang diagnostic ignored "-Wunused-macros" // warning: macro is not used
Expand Down

0 comments on commit fe09ebb

Please sign in to comment.