Changeset 750 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/ParamImpl.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/ParamImpl.cpp
r708 r750 81 81 { 82 82 ParmsNum = 0; 83 BOOST_FOREACH( Parameter *pParam, params ){83 foreach( Parameter *pParam, params ){ 84 84 Parms[ParmsNum]=0; 85 85 ParmsNum++; … … 219 219 for( int level=OVERLOAD_MIN_LEVEL; level<=OVERLOAD_MAX_LEVEL; level++ ) 220 220 { 221 BOOST_FOREACH( const UserProc *pTempUserProc, subs )221 foreach( const UserProc *pTempUserProc, subs ) 222 222 { 223 223 bool isErrored = false; … … 260 260 261 261 if( !pUserProc ){ 262 BOOST_FOREACH( const UserProc *pTempUserProc, subs )262 foreach( const UserProc *pTempUserProc, subs ) 263 263 { 264 264 //エラーチェック
Note:
See TracChangeset
for help on using the changeset viewer.