Changeset 186 in dev for trunk/jenga/src/smoothie/Class.cpp
- Timestamp:
- Jun 25, 2007, 4:22:39 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/jenga/src/smoothie/Class.cpp
r181 r186 10 10 , Prototype( namespaceScopes, name ) 11 11 , importedNamespaces( importedNamespaces ) 12 , ConstructorMemberSubIndex( 0)13 , DestructorMemberSubIndex( 0)12 , ConstructorMemberSubIndex( -1 ) 13 , DestructorMemberSubIndex( -1 ) 14 14 , classType( Class ) 15 15 , pobj_InheritsClass( NULL ) … … 450 450 if( pobj_c2->IsEqualSymbol( namespaceScopes, name ) ){ 451 451 //名前空間及びクラス名が重複した場合 452 throw SmoothieException(15,name,nowLine);452 SmoothieException::Throw(15,name,nowLine); 453 453 return 0; 454 454 } … … 471 471 { 472 472 if( !pStringClass ){ 473 throw SmoothieException();473 SmoothieException::Throw(); 474 474 return NULL; 475 475 } … … 479 479 { 480 480 if( !pObjectClass ){ 481 throw SmoothieException();481 SmoothieException::Throw(); 482 482 return NULL; 483 483 } … … 494 494 pCompilingMethod = pCompilingClass->GetStaticMethods().GetMethodPtr( pUserProc ); 495 495 if( !pCompilingMethod ){ 496 throw SmoothieException(300);496 SmoothieException::Throw(300); 497 497 } 498 498 }
Note:
See TracChangeset
for help on using the changeset viewer.