aboutsummaryrefslogtreecommitdiffhomepage
path: root/function.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-07-20 20:39:31 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-07-20 20:39:31 -0700
commitb08fb866378693d2e75f17fdfe5e60401a29136a (patch)
treead1eb00129b96d284ab9ed4ca2de1cc176219777 /function.h
parentb290fd33b973e573ffc7fc0c87be3ab431678b5f (diff)
Renamed env_vars to env_vars_snapshot_t
Cleanup of non-wcstring version of path_get_path
Diffstat (limited to 'function.h')
-rw-r--r--function.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/function.h b/function.h
index d17aa33f..42747912 100644
--- a/function.h
+++ b/function.h
@@ -17,7 +17,7 @@
#include "event.h"
class parser_t;
-class env_vars;
+class env_vars_snapshot_t;
/**
Structure describing a function. This is used by the parser to
@@ -124,7 +124,7 @@ int function_exists( const wcstring &name );
/**
Returns true if the function with the name name exists, without triggering autoload.
*/
-int function_exists_no_autoload( const wcstring &name, const env_vars &vars );
+int function_exists_no_autoload( const wcstring &name, const env_vars_snapshot_t &vars );
/**
Returns all function names.