Changeset 1049
- Timestamp:
- 02/26/10 11:49:41 (6 months ago)
- Files:
-
- 1 modified
-
trunk/rphp/include/rphp/analysis/pAST.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/rphp/include/rphp/analysis/pAST.h
r1043 r1049 132 132 return new (C) CLASS(*this, C);\ 133 133 }\ 134 static bool classof(const CLASS * s){ return true; }\135 static bool classof(const stmt* s) { return s->kind() == CLASS##Kind; }\134 static bool classof(const CLASS *) const { return true; }\ 135 static bool classof(const stmt* s) const { return s->kind() == CLASS##Kind; }\ 136 136 CLASS * retain() { stmt::retain(); return this; } 137 137
