@@ -49,6 +49,7 @@ STEPaggregate::~STEPaggregate() {
4949}
5050
5151STEPaggregate & STEPaggregate::ShallowCopy ( const STEPaggregate & a ) {
52+ (void ) a; // unused
5253 cerr << " Internal error: " << __FILE__ << " : " << __LINE__
5354 << " \n " << _POC_ " \n " ;
5455 cerr << " function: STEPaggregate::ShallowCopy \n " << " \n " ;
@@ -273,6 +274,7 @@ void STEPaggregate::Empty() {
273274
274275Severity STEPnode::StrToVal ( const char * s, ErrorDescriptor * err ) {
275276 // defined in subtypes
277+ (void ) s; // unused
276278 cerr << " Internal error: " << __FILE__ << " : " << __LINE__ << " \n " ;
277279 err->AppendToDetailMsg (
278280 " function: STEPnode::StrToVal() called instead of virtual function.\n "
@@ -286,6 +288,7 @@ Severity STEPnode::StrToVal( const char * s, ErrorDescriptor * err ) {
286288
287289Severity STEPnode::StrToVal ( istream & in, ErrorDescriptor * err ) {
288290 // defined in subtypes
291+ (void ) in; // unused
289292 cerr << " Internal error: " << __FILE__ << " : " << __LINE__ << " \n " ;
290293 err->AppendToDetailMsg (
291294 " function: STEPnode::StrToVal() called instead of virtual function.\n "
@@ -299,6 +302,7 @@ Severity STEPnode::StrToVal( istream & in, ErrorDescriptor * err ) {
299302
300303Severity STEPnode::STEPread ( const char * s, ErrorDescriptor * err ) {
301304 // defined in subclasses
305+ (void ) s; // unused
302306 cerr << " Internal error: " << __FILE__ << " : " << __LINE__ << " \n " ;
303307 cerr << " function: STEPnode::STEPread called instead of virtual function.\n "
304308 << _POC_ << " \n " ;
@@ -313,6 +317,7 @@ Severity STEPnode::STEPread( const char * s, ErrorDescriptor * err ) {
313317}
314318
315319Severity STEPnode::STEPread ( istream & in, ErrorDescriptor * err ) {
320+ (void ) in; // unused
316321 cerr << " Internal error: " << __FILE__ << " : " << __LINE__ << " \n " ;
317322 cerr << " function: STEPnode::STEPread called instead of virtual function.\n "
318323 << _POC_ << " \n " ;
@@ -327,6 +332,7 @@ Severity STEPnode::STEPread( istream & in, ErrorDescriptor * err ) {
327332
328333const char * STEPnode::asStr ( std::string & s ) {
329334 // defined in subclasses
335+ (void ) s; // unused
330336 cerr << " Internal error: " << __FILE__ << " : " << __LINE__ << " \n " ;
331337 cerr << " function: STEPnode::asStr called instead of virtual function.\n "
332338 << _POC_ << " \n " ;
@@ -350,13 +356,16 @@ const char * STEPnode::asStr( std::string & s ) {
350356 * SCLundefined's, this is not implemented.)
351357 */
352358const char * STEPnode::STEPwrite ( std::string & s, const char * currSch ) {
359+ (void ) s; // unused
360+ (void ) currSch; // unused
353361 cerr << " Internal error: " << __FILE__ << " : " << __LINE__ << " \n " ;
354362 cerr << " function: STEPnode::STEPwrite called instead of virtual function.\n "
355363 << _POC_ << " \n " ;
356364 return " " ;
357365}
358366
359367void STEPnode::STEPwrite ( ostream & out ) {
368+ (void ) out; // unused
360369 cerr << " Internal error: " << __FILE__ << " : " << __LINE__ << " \n " ;
361370 cerr << " function: STEPnode::STEPwrite called instead of virtual function.\n "
362371 << _POC_ << " \n " ;
@@ -873,6 +882,7 @@ Severity SelectNode::STEPread( const char * s, ErrorDescriptor * err,
873882Severity SelectNode::STEPread ( istream & in, ErrorDescriptor * err,
874883 const TypeDescriptor * elem_type,
875884 InstMgr * insts, int addFileId, const char * currSch ) {
885+ (void ) elem_type; // unused
876886 if ( !node ) {
877887 cerr << " Internal error: " << __FILE__ << " : " << __LINE__ << " \n "
878888 << _POC_ " \n " ;
0 commit comments