Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/InitTweak.h

    r29bc63e rbe9288a  
    2424// helper functions for initialization
    2525namespace InitTweak {
     26        bool isConstructor( const std::string & );
     27        bool isDestructor( const std::string & );
     28        bool isAssignment( const std::string & );
     29        bool isCtorDtor( const std::string & );
     30        bool isCtorDtorAssign( const std::string & );
     31
    2632        FunctionDecl * isAssignment( Declaration * decl );
    2733        FunctionDecl * isDestructor( Declaration * decl );
     
    3339        std::list< Expression * > makeInitList( Initializer * init );
    3440
    35         /// True if the resolver should try to construct dwt
    36         bool tryConstruct( DeclarationWithType * dwt );
    37 
    38         /// True if the type can have a user-defined constructor
    39         bool isConstructable( Type * t );
     41        /// True if the resolver should try to construct objDecl
     42        bool tryConstruct( ObjectDecl * objDecl );
    4043
    4144        /// True if the Initializer contains designations
Note: See TracChangeset for help on using the changeset viewer.