@@ -30,7 +30,7 @@ template< class T, class A >
3030A localGet ( const Eref& er, string field )
3131{
3232 string fullFieldName = " get" + field;
33- fullFieldName[3 ] = toupper ( fullFieldName[3 ] );
33+ fullFieldName[3 ] = std:: toupper ( fullFieldName[3 ] );
3434 const Finfo* finfo = er.element ()->cinfo ()->findFinfo ( fullFieldName );
3535 assert ( finfo );
3636
@@ -245,23 +245,23 @@ template< class A > class Field: public SetGet1< A >
245245 static bool set ( const ObjId& dest, const string& field, A arg )
246246 {
247247 string temp = " set" + field;
248- temp[3 ] = toupper ( temp[3 ] );
248+ temp[3 ] = std:: toupper ( temp[3 ] );
249249 return SetGet1< A >::set ( dest, temp, arg );
250250 }
251251
252252 static bool setVec ( ObjId destId, const string& field,
253253 const vector< A >& arg )
254254 {
255255 string temp = " set" + field;
256- temp[3 ] = toupper ( temp[3 ] );
256+ temp[3 ] = std:: toupper ( temp[3 ] );
257257 return SetGet1< A >::setVec ( destId, temp, arg );
258258 }
259259
260260 static bool setRepeat ( ObjId destId, const string& field,
261261 A arg )
262262 {
263263 string temp = " set" + field;
264- temp[3 ] = toupper ( temp[3 ] );
264+ temp[3 ] = std:: toupper ( temp[3 ] );
265265 return SetGet1< A >::setRepeat ( destId, temp, arg );
266266 }
267267
@@ -286,7 +286,7 @@ template< class A > class Field: public SetGet1< A >
286286 ObjId tgt ( dest );
287287 FuncId fid;
288288 string fullFieldName = " get" + field;
289- fullFieldName[3 ] = toupper ( fullFieldName[3 ] );
289+ fullFieldName[3 ] = std:: toupper ( fullFieldName[3 ] );
290290 const OpFunc* func = SetGet::checkSet ( fullFieldName, tgt, fid );
291291 const GetOpFuncBase< A >* gof =
292292 dynamic_cast < const GetOpFuncBase< A >* >( func );
@@ -321,7 +321,7 @@ template< class A > class Field: public SetGet1< A >
321321 ObjId tgt ( dest );
322322 FuncId fid;
323323 string fullFieldName = " get" + field;
324- fullFieldName[3 ] = toupper ( fullFieldName[3 ] );
324+ fullFieldName[3 ] = std:: toupper ( fullFieldName[3 ] );
325325 const OpFunc* func = SetGet::checkSet ( fullFieldName, tgt, fid );
326326 const GetOpFuncBase< A >* gof =
327327 dynamic_cast < const GetOpFuncBase< A >* >( func );
@@ -468,7 +468,7 @@ template< class L, class A > class LookupField: public SetGet2< L, A >
468468 L index, A arg )
469469 {
470470 string temp = " set" + field;
471- temp[3 ] = toupper ( temp[3 ] );
471+ temp[3 ] = std:: toupper ( temp[3 ] );
472472 return SetGet2< L, A >::set ( dest, temp, index, arg );
473473 }
474474
@@ -480,7 +480,7 @@ template< class L, class A > class LookupField: public SetGet2< L, A >
480480 const vector< L >& index, const vector< A >& arg )
481481 {
482482 string temp = " set" + field;
483- temp[3 ] = toupper ( temp[3 ] );
483+ temp[3 ] = std:: toupper ( temp[3 ] );
484484 return SetGet2< L, A >::setVec ( destId, temp, index, arg );
485485 }
486486
@@ -494,7 +494,7 @@ template< class L, class A > class LookupField: public SetGet2< L, A >
494494 const vector< L >& index, const vector< A >& arg )
495495 {
496496 string temp = " set" + field;
497- temp[3 ] = toupper ( temp[3 ] );
497+ temp[3 ] = std:: toupper ( temp[3 ] );
498498 return SetGet2< L, A >::setVec ( dest, temp, index, arg );
499499 }
500500
@@ -534,7 +534,7 @@ template< class L, class A > class LookupField: public SetGet2< L, A >
534534 ObjId tgt ( dest );
535535 FuncId fid;
536536 string fullFieldName = " get" + field;
537- fullFieldName[3 ] = toupper ( fullFieldName[3 ] );
537+ fullFieldName[3 ] = std:: toupper ( fullFieldName[3 ] );
538538 const OpFunc* func = SetGet::checkSet ( fullFieldName, tgt, fid);
539539 const LookupGetOpFuncBase< L, A >* gof =
540540 dynamic_cast < const LookupGetOpFuncBase< L, A >* >( func );
@@ -577,7 +577,7 @@ template< class L, class A > class LookupField: public SetGet2< L, A >
577577 ObjId tgt ( dest );
578578 FuncId fid;
579579 string fullFieldName = " get" + field;
580- fullFieldName[3 ] = toupper ( fullFieldName[3 ] );
580+ fullFieldName[3 ] = std:: toupper ( fullFieldName[3 ] );
581581 const OpFunc* func = SetGet::checkSet ( fullFieldName, tgt, fid );
582582 const LookupGetOpFuncBase< L, A >* gof =
583583 dynamic_cast < const LookupGetOpFuncBase< L, A >* >( func );
0 commit comments