summaryrefslogtreecommitdiff
path: root/src/video_core/command_classes
diff options
context:
space:
mode:
authorGravatar comex2020-11-14 18:35:34 -0500
committerGravatar comex2020-11-26 16:35:42 -0500
commit4681e1ea9ea749646488d05d45327f57c4b321f2 (patch)
treeebff3bb1aae1c9a35eead61617e6b24b026b9fa8 /src/video_core/command_classes
parentMerge pull request #4975 from comex/invalid-syncpoint-id (diff)
downloadyuzu-4681e1ea9ea749646488d05d45327f57c4b321f2.tar.gz
yuzu-4681e1ea9ea749646488d05d45327f57c4b321f2.tar.xz
yuzu-4681e1ea9ea749646488d05d45327f57c4b321f2.zip
codec: Fix `pragma GCC diagnostic pop` missing corresponding push
Diffstat (limited to 'src/video_core/command_classes')
-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 @@
10 10
11extern "C" { 11extern "C" {
12#if defined(__GNUC__) || defined(__clang__) 12#if defined(__GNUC__) || defined(__clang__)
13#pragma GCC diagnostic push
13#pragma GCC diagnostic ignored "-Wconversion" 14#pragma GCC diagnostic ignored "-Wconversion"
14#endif 15#endif
15#include <libavcodec/avcodec.h> 16#include <libavcodec/avcodec.h>