From ddf86d8f2515cf68facfa7de7623a5a17f4c9d08 Mon Sep 17 00:00:00 2001 From: Frank Dellaert Date: Sun, 8 Jan 2023 11:57:54 -0800 Subject: [PATCH] Fix compilation issue on Linux --- gtsam/base/tests/testDSFMap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtsam/base/tests/testDSFMap.cpp b/gtsam/base/tests/testDSFMap.cpp index 2e4b4f146..3fd556832 100644 --- a/gtsam/base/tests/testDSFMap.cpp +++ b/gtsam/base/tests/testDSFMap.cpp @@ -109,7 +109,7 @@ TEST(DSFMap, mergePairwiseMatches2) { /* ************************************************************************* */ TEST(DSFMap, sets){ // Create some "matches" - typedef const std::pair Match; + using Match = std::pair; const std::list matches{{1, 2}, {2, 3}, {4, 5}, {4, 6}}; // Merge matches