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