Changeset 337 in dev for trunk/abdev/BasicCompiler32/Compile_Func.cpp
- Timestamp:
- Sep 29, 2007, 1:21:08 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_Func.cpp
r336 r337 393 393 pUserProc=OverloadSolution( name, subs, *pBaseParams, Type() ); 394 394 395 if( isCallOn ) 396 { 397 // コード生成を伴う場合はエラーチェックを行う 398 if( !pUserProc->Params().Equals( *pBaseParams ) 399 || !pUserProc->ReturnType().Equals( baseType.GetClass().GetDelegate().ReturnType() ) ) 400 { 401 if( baseType.IsDelegate() ) 402 { 403 SetError(67, name, cp ); 404 } 405 else 406 { 407 SetError(66, name, cp ); 408 } 409 } 410 } 411 395 412 if(!pUserProc){ 396 413 SetError(27,name,cp);
Note:
See TracChangeset
for help on using the changeset viewer.