mirror of
https://github.com/NGSolve/netgen.git
synced 2025-05-24 03:00:49 +05:00
fix occ version check macro
This commit is contained in:
parent
558f6815ec
commit
e266059109
@ -2,8 +2,8 @@
|
||||
#define FILE_OCC_UTILS_INCLUDED
|
||||
|
||||
#define NETGEN_OCC_VERSION_AT_LEAST(MAYOR, MINOR) \
|
||||
MAYOR > OCC_VERSION_MAYOR || \
|
||||
(MAYOR == OCC_VERSION_MAYOR && MINOR >= OCC_VERSION_MINOR)
|
||||
OCC_VERSION_MAYOR > MAYOR || \
|
||||
(OCC_VERSION_MAYOR == MAYOR && OCC_VERSION_MINOR >= MINOR)
|
||||
#define NETGEN_OCC_VERSION_AT_LEAST_MAYOR(MAYOR) \
|
||||
NETGEN_OCC_VERSION_AT_LEAST(MAYOR, 0)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user