From 5c4c9947c823d406a25e2d8caaf8e1f31097c50e Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Tue, 27 Feb 2018 12:48:10 -0500 Subject: [PATCH] fix initializer in tests/manifold/chart_manifold_10 --- tests/manifold/chart_manifold_10.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/manifold/chart_manifold_10.cc b/tests/manifold/chart_manifold_10.cc index 92a2dc820d..d13af5375e 100644 --- a/tests/manifold/chart_manifold_10.cc +++ b/tests/manifold/chart_manifold_10.cc @@ -29,8 +29,8 @@ print_intermediate_point (const Manifold &manifold, const Point &p2, const double weight) { - const std::vector > points({{p1, p2}}); - const std::vector weights({{1-weight, weight}}); + const std::vector > points({p1, p2}); + const std::vector weights({1-weight, weight}); deallog.precision(3); deallog << manifold_name << " between points [" << p1 << "] and [" << p2 << "] with weight " << weight << std::endl; -- 2.39.5