Default type for a new net is now Net::Type::LOGICAL (and not UNDEFINED)
This commit is contained in:
parent
1155d95365
commit
3d2d3e545d
|
@ -258,7 +258,7 @@ Net::Net(Cell* cell, const Name& name)
|
||||||
_isGlobal(false),
|
_isGlobal(false),
|
||||||
_isExternal(false),
|
_isExternal(false),
|
||||||
_isAutomatic(false),
|
_isAutomatic(false),
|
||||||
_type(),
|
_type(Type::LOGICAL), // default is Type::LOGICAL : no more Type::Undefined - Damien.Dupuis 01/10/2010
|
||||||
_direction(),
|
_direction(),
|
||||||
_position(0,0),
|
_position(0,0),
|
||||||
_componentSet(),
|
_componentSet(),
|
||||||
|
|
Loading…
Reference in New Issue