Skip to content

Commit

Permalink
Fixed more Clang warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
fo76utils authored Sep 17, 2024
1 parent a31d701 commit 2c4d696
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib/qhull.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,14 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// to no longer work as of msvc2013
#else
#pragma GCC diagnostic push
#ifdef __clang__
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
#else
#pragma GCC diagnostic ignored "-Wclobbered"
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#endif
#pragma GCC diagnostic ignored "-Wunused-but-set-variable"
#pragma GCC diagnostic ignored "-Wunused-but-set-parameter"
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
#endif
extern "C"
{
Expand Down

0 comments on commit 2c4d696

Please sign in to comment.