Changeset 750 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/LexicalAnalyzer_Procedure.cpp
- Timestamp:
- Sep 24, 2008, 2:02:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/LexicalAnalyzer_Procedure.cpp
r710 r750 120 120 121 121 //パラメータ 122 BOOST_FOREACH( const std::string ¶mStr, parameterStrings )122 foreach( const std::string ¶mStr, parameterStrings ) 123 123 { 124 124 int i = 0; … … 384 384 385 385 //パラメータをコピー 386 BOOST_FOREACH( Parameter *pParam, userProc.GetParameters() ){386 foreach( Parameter *pParam, userProc.GetParameters() ){ 387 387 userProc.RealParams().push_back( new Parameter( *pParam ) ); 388 388 } … … 733 733 { 734 734 ::Interface *pTargetInterface = NULL; 735 BOOST_FOREACH( ::Interface *pInterface, pobj_c->GetInterfaces() )735 foreach( ::Interface *pInterface, pobj_c->GetInterfaces() ) 736 736 { 737 737 if( pInterface->GetClass().GetName() == interfaceName ) … … 855 855 856 856 // パラメータのエラーチェック 857 BOOST_FOREACH( const Parameter *pParam, pDllProc->Params() ){857 foreach( const Parameter *pParam, pDllProc->Params() ){ 858 858 if( pParam->IsObject() ){ 859 859 compiler.errorMessenger.Output(25,pParam->GetVarName(),nowLine);
Note:
See TracChangeset
for help on using the changeset viewer.