From 598b29bdf8bde4e80927d5eb51d6ea6320764a22 Mon Sep 17 00:00:00 2001 From: Fabien Castan Date: Wed, 20 Jan 2021 20:58:56 +0100 Subject: [PATCH] [fuseCut] build fix: missing return of non-void function --- src/aliceVision/fuseCut/DelaunayGraphCut.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aliceVision/fuseCut/DelaunayGraphCut.cpp b/src/aliceVision/fuseCut/DelaunayGraphCut.cpp index b75fb1d02b..6613daeb2c 100644 --- a/src/aliceVision/fuseCut/DelaunayGraphCut.cpp +++ b/src/aliceVision/fuseCut/DelaunayGraphCut.cpp @@ -474,8 +474,8 @@ std::vector DelaunayGraphCut::getNeighboringCellsBy case EGeometryType::Facet: return getNeighboringCellsByFacet(g.facet); case EGeometryType::None: - throw std::runtime_error("[error] getNeighboringCellsByGeometry: an undefined/None geometry has no neighboring cells."); } + throw std::runtime_error("[error] getNeighboringCellsByGeometry: an undefined/None geometry has no neighboring cells."); } std::vector DelaunayGraphCut::getNeighboringCellsByFacet(const Facet& f) const