summaryrefslogtreecommitdiff
path: root/src/expr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr.h')
-rw-r--r--src/expr.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/expr.h b/src/expr.h
index 7f4cd9b5..8104be35 100644
--- a/src/expr.h
+++ b/src/expr.h
@@ -68,9 +68,7 @@ typedef function<value_t (call_scope_t&)> function_t;
class expr_t
{
struct token_t;
-
- class parser_t;
- static std::auto_ptr<parser_t> parser;
+ class parser_t;
public:
class op_t;
@@ -92,14 +90,6 @@ private:
bool compiled;
public:
- /**
- * The initialize and shutdown methods ready the amount subsystem for
- * use. Normally they are called by `session_t::initialize' and
- * `session_t::shutdown'.
- */
- static void initialize();
- static void shutdown();
-
expr_t();
expr_t(const expr_t& other);
expr_t(const ptr_op_t& _ptr, const string& _str = "");