We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59279c6 commit 755db46Copy full SHA for 755db46
tools/basecurve/exif-wrapper.cpp
@@ -16,9 +16,13 @@
16
along with darktable. If not, see <http://www.gnu.org/licenses/>.
17
*/
18
19
+// avoid error reported when including exiv2.hpp on macOS (XCode 15.2)
20
+#pragma GCC diagnostic push
21
+#pragma GCC diagnostic ignored "-Wshadow"
22
#include <exiv2/exif.hpp>
23
#include <exiv2/error.hpp>
24
#include <exiv2/image.hpp>
25
+#pragma GCC diagnostic pop
26
27
#include <cstdio>
28
#include <cassert>
0 commit comments