Changeset 562 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/error.cpp
- Timestamp:
- May 5, 2008, 1:47:06 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/error.cpp
r527 r562 66 66 // デリゲート同士の比較の場合 67 67 // ※共変戻り値及び反辺引数をサポートすること 68 if( !varType.GetClass().GetDelegate().IsSimilar( calcType.GetClass().GetDelegate() ) ) 68 const ::Delegate *pVarDelegate = &compiler.GetObjectModule().meta.ToDelegate( varType.GetClass() ); 69 const ::Delegate *pCalcDelegate = &compiler.GetObjectModule().meta.ToDelegate( calcType.GetClass() ); 70 if( !pVarDelegate->IsSimilar( *pCalcDelegate ) ) 69 71 { 70 72 // 等しいと見なされないとき
Note:
See TracChangeset
for help on using the changeset viewer.