Changeset 1050
- Timestamp:
- 02/26/10 11:52:34 (5 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
r1049 r1050 132 132 return new (C) CLASS(*this, C);\ 133 133 }\ 134 static bool classof(const CLASS *) const{ return true; }\135 static bool classof(const stmt* s) const{ return s->kind() == CLASS##Kind; }\134 static bool classof(const CLASS *) { return true; }\ 135 static bool classof(const stmt* s) { return s->kind() == CLASS##Kind; }\ 136 136 CLASS * retain() { stmt::retain(); return this; } 137 137
