Changes in src/Common/PassVisitor.h [02fdb8e:675716e]
- File:
-
- 1 edited
-
src/Common/PassVisitor.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Common/PassVisitor.h
r02fdb8e r675716e 4 4 5 5 #include <stack> 6 #include <type_traits>7 6 8 7 #include "Common/Stats.h" … … 302 301 303 302 304 auto get_env_ptr () -> decltype(env_impl( pass, 0)) { return env_impl( pass, 0); }303 TypeSubstitution ** get_env_ptr () { return env_impl ( pass, 0); } 305 304 std::list< Statement* > * get_beforeStmts() { return stmtsToAddBefore_impl( pass, 0); } 306 305 std::list< Statement* > * get_afterStmts () { return stmtsToAddAfter_impl ( pass, 0); } … … 349 348 }; 350 349 351 class WithConstTypeSubstitution {352 protected:353 WithConstTypeSubstitution() = default;354 ~WithConstTypeSubstitution() = default;355 356 public:357 const TypeSubstitution * env = nullptr;358 };359 360 350 class WithStmtsToAdd { 361 351 protected:
Note:
See TracChangeset
for help on using the changeset viewer.