Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/InitTweak.h

    r6f096d2 rc1ed2ee  
    2626// helper functions for initialization
    2727namespace InitTweak {
    28         const FunctionDecl * isAssignment( const Declaration * decl );
    29         const FunctionDecl * isDestructor( const Declaration * decl );
    30         const FunctionDecl * isDefaultConstructor( const Declaration * decl );
    31         const FunctionDecl * isCopyConstructor( const Declaration * decl );
    32         const FunctionDecl * isCopyFunction( const Declaration * decl, const std::string & fname );
     28        FunctionDecl * isAssignment( Declaration * decl );
     29        FunctionDecl * isDestructor( Declaration * decl );
     30        FunctionDecl * isDefaultConstructor( Declaration * decl );
     31        FunctionDecl * isCopyConstructor( Declaration * decl );
     32        FunctionDecl * isCopyFunction( Declaration * decl, const std::string & fname );
    3333        bool isCopyFunction( const ast::FunctionDecl * decl );
    3434
     
    153153                InitExpander_new & operator++ ();
    154154
    155                 /// builds statement which has the same semantics as a C-style list initializer (for array
    156                 /// initializers) using callExpr as the base expression to perform initialization.
     155                /// builds statement which has the same semantics as a C-style list initializer (for array 
     156                /// initializers) using callExpr as the base expression to perform initialization. 
    157157                /// Mutates callExpr
    158158                ast::ptr< ast::Stmt > buildListInit( ast::UntypedExpr * callExpr );
Note: See TracChangeset for help on using the changeset viewer.