Changes in src/AST/Pass.hpp [b2a11ba:490fb92e]
- File:
-
- 1 edited
-
src/AST/Pass.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Pass.hpp
rb2a11ba r490fb92e 236 236 const ast::Expr * call_accept( const ast::Expr * ); 237 237 238 // requests WithStmtsToAdd directly add to this statement, as if it is a compound. 239 240 const ast::Stmt * call_accept_as_compound(const ast::Stmt *); 241 238 242 template< typename node_t > 239 243 auto call_accept( const node_t * node ) -> typename std::enable_if< … … 257 261 template<typename node_t, typename parent_t, typename child_t> 258 262 void maybe_accept(const node_t * &, child_t parent_t::* child); 263 264 template<typename node_t, typename parent_t, typename child_t> 265 void maybe_accept_as_compound(const node_t * &, child_t parent_t::* child); 259 266 260 267 private:
Note:
See TracChangeset
for help on using the changeset viewer.