moved warning avoidance over to c files

This commit is contained in:
AdenKoperczak 2024-09-19 14:37:35 -04:00
parent 2cd0a16028
commit 797f26e461
6 changed files with 41 additions and 3 deletions

View file

@ -1,7 +1,16 @@
#pragma once
#if defined(__clang__)
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wdelete-non-abstract-non-virtual-dtor"
#endif
#include <QOpenGLFunctions_3_3_Core>
#if defined(__clang__)
# pragma clang diagnostic pop
#endif
#define SCWX_GL_CHECK_ERROR() \
{ \
GLenum err; \