#include <map>
#include <set>
+#include <cstdio>
#include <cstdlib>
#include "location.hh"
virtual void Output(CYOutput &out) const;
};
-struct CYContext :
- CYScope
-{
+struct CYContext {
apr_pool_t *pool_;
CYOptions &options_;
CYScope *scope_;
CYContext(apr_pool_t *pool, CYOptions &options) :
pool_(pool),
options_(options),
- scope_(this)
+ scope_(NULL)
{
}