Skip to content

Commit

Permalink
try to get that damn under error fixed on CI compile
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Jul 25, 2023
1 parent c5b944b commit 8c88e5a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/widget/form/settings/aboutform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,15 @@
#include <libavutil/avutil.h>

#ifndef __STDC_VERSION__
#define __STDC_VERSION__ 199901L
// #define __STDC_VERSION__ 199901L
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpragmas"
#pragma GCC diagnostic ignored "-Wunknown-pragmas"
#pragma GCC diagnostic ignored "-Wpedantic"
#pragma GCC diagnostic ignored "-Wextra"
#pragma GCC diagnostic ignored "-Wall"
#include <opus.h>
#undef __STDC_VERSION__
// #undef __STDC_VERSION__
#else
#include <opus.h>
#endif
Expand Down

0 comments on commit 8c88e5a

Please sign in to comment.