From 04e8e7992aa0731f8a637f496dfd864744000843 Mon Sep 17 00:00:00 2001 From: Enrico Seiler Date: Tue, 28 Nov 2023 12:39:35 +0100 Subject: [PATCH] remove workaround should only be needed when using structured bindings in a lambda --- test/api/layout/input_test.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/test/api/layout/input_test.cpp b/test/api/layout/input_test.cpp index a2ebd519..a1b240e2 100644 --- a/test/api/layout/input_test.cpp +++ b/test/api/layout/input_test.cpp @@ -71,16 +71,7 @@ TEST(layout_test, read_single_layout) 5 1;2;3;4;22 1;1;1;1;21 )layout_file"}; -// https://godbolt.org/z/PeKnxzjn1 -#if defined(__clang__) - auto tuple = chopper::layout::read_layout_file(layout_file); - // https://godbolt.org/z/WoWf55KPb - auto filenames = std::move(std::get<0>(tuple)); - auto chopper_config = std::move(std::get<1>(tuple)); - auto hibf_layouts = std::move(std::get<2>(tuple)); -#else auto [filenames, chopper_config, layout] = chopper::layout::read_layout_file(ss); -#endif EXPECT_EQ(layout.top_level_max_bin_id, 111); EXPECT_EQ(layout.max_bins[0], (seqan::hibf::layout::layout::max_bin{{0}, 0}));