Ignore:
Timestamp:
Jun 25, 2007, 4:22:39 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/jenga/src/smoothie/Class.cpp

    r181 r186  
    1010    , Prototype( namespaceScopes, name )
    1111    , importedNamespaces( importedNamespaces )
    12     , ConstructorMemberSubIndex( 0 )
    13     , DestructorMemberSubIndex( 0 )
     12    , ConstructorMemberSubIndex( -1 )
     13    , DestructorMemberSubIndex( -1 )
    1414    , classType( Class )
    1515    , pobj_InheritsClass( NULL )
     
    450450            if( pobj_c2->IsEqualSymbol( namespaceScopes, name ) ){
    451451                //名前空間及びクラス名が重複した場合
    452                 throw SmoothieException(15,name,nowLine);
     452                SmoothieException::Throw(15,name,nowLine);
    453453                return 0;
    454454            }
     
    471471{
    472472    if( !pStringClass ){
    473         throw SmoothieException();
     473        SmoothieException::Throw();
    474474        return NULL;
    475475    }
     
    479479{
    480480    if( !pObjectClass ){
    481         throw SmoothieException();
     481        SmoothieException::Throw();
    482482        return NULL;
    483483    }
     
    494494            pCompilingMethod = pCompilingClass->GetStaticMethods().GetMethodPtr( pUserProc );
    495495            if( !pCompilingMethod ){
    496                 throw SmoothieException(300);
     496                SmoothieException::Throw(300);
    497497            }
    498498        }
Note: See TracChangeset for help on using the changeset viewer.