From 8fe2ae6030845e2ff8cc7a23fca08dd254fe4ce7 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Wed, 22 Mar 2023 21:01:52 -0700 Subject: [PATCH] remove constexpr const_iterator is not constexpr. clang 15 on MSYS2 fails to compile because of this. Signed-off-by: Rosen Penev --- samples/easyaccess-test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/easyaccess-test.cpp b/samples/easyaccess-test.cpp index e3695bf5..c33fe43f 100644 --- a/samples/easyaccess-test.cpp +++ b/samples/easyaccess-test.cpp @@ -8,7 +8,7 @@ // Type for an Exiv2 Easy access function using EasyAccessFct = Exiv2::ExifData::const_iterator (*)(const Exiv2::ExifData&); -static constexpr struct { +static const struct { const char* l; EasyAccessFct f; const char* n;