Skip to content

Commit ff3fd1f

Browse files
committed
_complex is now bool, not int - update STEPcomplex ctors
1 parent 9313b8e commit ff3fd1f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/clstepcore/STEPcomplex.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ ReadStdKeyword( istream & in, std::string & buf, int skipInitWS );
1212

1313

1414
STEPcomplex::STEPcomplex( Registry * registry, int fileid )
15-
: SDAI_Application_instance( fileid, 1 ), sc( 0 ), _registry( registry ), visited( 0 ) {
15+
: SDAI_Application_instance( fileid, true ), sc( 0 ), _registry( registry ), visited( 0 ) {
1616
head = this;
1717
}
1818

1919
STEPcomplex::STEPcomplex( Registry * registry, const std::string ** names,
2020
int fileid, const char * schnm )
21-
: SDAI_Application_instance( fileid, 1 ), sc( 0 ), _registry( registry ), visited( 0 ) {
21+
: SDAI_Application_instance( fileid, true ), sc( 0 ), _registry( registry ), visited( 0 ) {
2222
char * nms[BUFSIZ];
2323
int j, k;
2424

@@ -38,7 +38,7 @@ STEPcomplex::STEPcomplex( Registry * registry, const std::string ** names,
3838

3939
STEPcomplex::STEPcomplex( Registry * registry, const char ** names, int fileid,
4040
const char * schnm )
41-
: SDAI_Application_instance( fileid, 1 ), sc( 0 ), _registry( registry ), visited( 0 ) {
41+
: SDAI_Application_instance( fileid, true ), sc( 0 ), _registry( registry ), visited( 0 ) {
4242

4343
head = this;
4444
Initialize( names, schnm );

0 commit comments

Comments
 (0)