Changes in src/InitTweak/InitTweak.h [29bc63e:be9288a]
- File:
-
- 1 edited
-
src/InitTweak/InitTweak.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/InitTweak.h
r29bc63e rbe9288a 24 24 // helper functions for initialization 25 25 namespace 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 26 32 FunctionDecl * isAssignment( Declaration * decl ); 27 33 FunctionDecl * isDestructor( Declaration * decl ); … … 33 39 std::list< Expression * > makeInitList( Initializer * init ); 34 40 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 ); 40 43 41 44 /// True if the Initializer contains designations
Note:
See TracChangeset
for help on using the changeset viewer.