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.
2 parents 59279c6 + bd1fc8d commit 21f3de1Copy full SHA for 21f3de1
tools/basecurve/exif-wrapper.cpp
@@ -1,6 +1,7 @@
1
/*
2
This file is part of darktable,
3
2014 Edouard Gomez
4
+ Copyright (C) 2025 darktable developers.
5
6
darktable is free software: you can redistribute it and/or modify
7
it under the terms of the GNU General Public License as published by
@@ -16,9 +17,13 @@
16
17
along with darktable. If not, see <http://www.gnu.org/licenses/>.
18
*/
19
20
+// avoid error reported when including exiv2.hpp on macOS (XCode 15.2)
21
+#pragma GCC diagnostic push
22
+#pragma GCC diagnostic ignored "-Wshadow"
23
#include <exiv2/exif.hpp>
24
#include <exiv2/error.hpp>
25
#include <exiv2/image.hpp>
26
+#pragma GCC diagnostic pop
27
28
#include <cstdio>
29
#include <cassert>
0 commit comments