From e0ad72b463f6c7b064416f3abfc3accb75324e27 Mon Sep 17 00:00:00 2001 From: eap Date: Fri, 26 Aug 2016 20:37:36 +0300 Subject: [PATCH] 023324: REGRESSION: SMESH: Failure to mesh a geometry with MG-Tetra algo. --- src/HYBRIDPlugin/MG_HYBRID_API.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/HYBRIDPlugin/MG_HYBRID_API.cxx b/src/HYBRIDPlugin/MG_HYBRID_API.cxx index 93d769f..de009db 100644 --- a/src/HYBRIDPlugin/MG_HYBRID_API.cxx +++ b/src/HYBRIDPlugin/MG_HYBRID_API.cxx @@ -800,6 +800,8 @@ bool MG_HYBRID_API::Compute( const std::string& cmdLine, std::string& errStr ) value = ""; while ( i+1 < args.size() && args[i+1][0] != '-' ) { + if ( strncmp( "1>", args[i+1].c_str(), 2 ) == 0 ) + break; if ( !value.empty() ) value += " "; value += args[++i]; } -- 2.39.2