]> OCCT Git - occt.git/commitdiff
0033163: Bad definition of values in IMeshData_Status
authoroan <oan@opencascade.com>
Tue, 18 Oct 2022 21:49:02 +0000 (00:49 +0300)
committersmoskvin <smoskvin@opencascade.com>
Mon, 31 Oct 2022 15:21:08 +0000 (18:21 +0300)
Corrected value of status enum

src/IMeshData/IMeshData_Status.hxx

index e8348773de35103943e32ad5a90c703a67a708a4..53e171592b3a9c66cbb82ed7fb1206cd90652c0f 100644 (file)
@@ -28,7 +28,7 @@ enum IMeshData_Status
   IMeshData_TooFewPoints          = 0x20,  //!< Discrete model contains too few boundary points to generate mesh.
   IMeshData_Outdated              = 0x40,  //!< Existing triangulation of some faces corresponds to greater deflection than specified by parameter.
   IMeshData_Reused                = 0x80,  //!< Existing triangulation of some faces is reused as far as it fits specified deflection.
-  IMeshData_UserBreak             = 0x160  //!< User break
+  IMeshData_UserBreak             = 0x100  //!< User break
 };
 
 #endif