<#222 rename Region to NetRegion> Pull request ope...
# openlane-development
g
#222 rename Region to NetRegion Pull request opened by xobs On Macos, Tk includes X11, which has this define:
Copy code
#if !defined(MAC_OSX_TK)
#   include <X11/X.h>
#endif
#ifdef MAC_OSX_TK
#   include <X11/X.h>
#   define Cursor XCursor
#   define Region XRegion
#endif
This causes the keywords
Cursor
and
Region
to be reserved, which prevents magic from building (see #195) Rename
Region
to
NetRegion
as suggested by @RTimothyEdwards in #195 (comment) RTimothyEdwards/magic
g