From 9df24448cbeebc0828097c70d64aa2f1a5946816 Mon Sep 17 00:00:00 2001 From: eap Date: Fri, 26 Aug 2016 20:33:49 +0300 Subject: [PATCH] 023324: REGRESSION: SMESH: Failure to mesh a geometry with MG-Tetra algo. --- src/HexoticPlugin/MG_Hexotic_API.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/HexoticPlugin/MG_Hexotic_API.cxx b/src/HexoticPlugin/MG_Hexotic_API.cxx index 989fb5b..314912e 100644 --- a/src/HexoticPlugin/MG_Hexotic_API.cxx +++ b/src/HexoticPlugin/MG_Hexotic_API.cxx @@ -790,6 +790,8 @@ bool MG_Hexotic_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