summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLC <mathew1800@gmail.com>2020-11-26 16:38:34 -0500
committerGitHub <noreply@github.com>2020-11-26 16:38:34 -0500
commitab315011fb964de132be5cbe5e64cf40fe3d7b17 (patch)
treeebff3bb1aae1c9a35eead61617e6b24b026b9fa8
parent322349e8cc948d069f62a85a0c09a689c3e31796 (diff)
parent4681e1ea9ea749646488d05d45327f57c4b321f2 (diff)
Merge pull request #5016 from comex/xx-push
codec: Fix `pragma GCC diagnostic pop` missing corresponding push
-rw-r--r--src/video_core/command_classes/codecs/codec.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/command_classes/codecs/codec.h b/src/video_core/command_classes/codecs/codec.h
index 5bbe6a332..ee5d62540 100644
--- a/src/video_core/command_classes/codecs/codec.h
+++ b/src/video_core/command_classes/codecs/codec.h
@@ -10,6 +10,7 @@
extern "C" {
#if defined(__GNUC__) || defined(__clang__)
+#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wconversion"
#endif
#include <libavcodec/avcodec.h>