exiv2-0.27.4
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
From f01805f68eb19f56b0415a50a1128cbbdd82bff4 Mon Sep 17 00:00:00 2001
|
||||
From: Antonio Rojas <arojas@archlinux.org>
|
||||
Date: Fri, 18 Jun 2021 18:53:46 +0200
|
||||
Subject: [PATCH] Fix build with gtest 1.11
|
||||
|
||||
INSTANTIATE_TYPED_TEST_CASE_P requires a non-empty prefix now
|
||||
---
|
||||
unitTests/test_slice.cpp | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/unitTests/test_slice.cpp b/unitTests/test_slice.cpp
|
||||
index ccf80d98db..59171cfcfd 100644
|
||||
--- a/unitTests/test_slice.cpp
|
||||
+++ b/unitTests/test_slice.cpp
|
||||
@@ -440,12 +440,12 @@ REGISTER_TYPED_TEST_CASE_P(slice, atAccess, iteratorAccess, constructionFailsFro
|
||||
constMethodsPreserveConst);
|
||||
|
||||
typedef ::testing::Types<const std::vector<int>, std::vector<int>, int*, const int*> test_types_t;
|
||||
-INSTANTIATE_TYPED_TEST_CASE_P(, slice, test_types_t);
|
||||
+INSTANTIATE_TYPED_TEST_CASE_P(slice, slice, test_types_t);
|
||||
|
||||
REGISTER_TYPED_TEST_CASE_P(mutableSlice, iterators, at);
|
||||
typedef ::testing::Types<std::vector<int>, int*> mut_test_types_t;
|
||||
-INSTANTIATE_TYPED_TEST_CASE_P(, mutableSlice, mut_test_types_t);
|
||||
+INSTANTIATE_TYPED_TEST_CASE_P(slice, mutableSlice, mut_test_types_t);
|
||||
|
||||
REGISTER_TYPED_TEST_CASE_P(dataBufSlice, successfulConstruction, failedConstruction);
|
||||
typedef ::testing::Types<DataBuf&, const DataBuf&> data_buf_types_t;
|
||||
-INSTANTIATE_TYPED_TEST_CASE_P(, dataBufSlice, data_buf_types_t);
|
||||
+INSTANTIATE_TYPED_TEST_CASE_P(slice, dataBufSlice, data_buf_types_t);
|
||||
Reference in New Issue
Block a user