Skip to content

Commit a01cbce

Browse files
committed
remove comment
1 parent 237dfca commit a01cbce

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

tests/unit/src/views.cpp

-16
Original file line numberDiff line numberDiff line change
@@ -101,21 +101,5 @@ const tst::set set("views", [](tst::suite& suite) {
101101

102102
tst::check(result == expected, SL);
103103
});
104-
105-
// TODO:
106-
// suite.add("zip_view__iterate_over_temporary_span", []() {
107-
// std::vector<int> vec1 = {1, 2, 3, 4};
108-
// std::vector<std::string> vec2 = {"a", "b", "c", "d"};
109-
110-
// std::vector<std::string> result;
111-
112-
// for (auto [v2, v1span] : utki::views::zip(vec2, utki::make_span(vec1))) {
113-
// result.push_back(utki::cat(v2, v1span));
114-
// }
115-
116-
// std::vector<std::string> expected = {"a1", "b2", "c3", "d4"};
117-
118-
// tst::check(result == expected, SL);
119-
// });
120104
});
121105
} // namespace

0 commit comments

Comments
 (0)