From 0067aafbb01a40abf802eb649c0f349f82b84bed Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Mon, 1 Dec 2014 17:34:47 -0500 Subject: [PATCH] Forgot to commit Value -> ValuePtr fix to header --- src/module.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module.h b/src/module.h index cf14d950..504eb2a8 100644 --- a/src/module.h +++ b/src/module.h @@ -111,7 +111,7 @@ public: bool hasIncludes() const { return !this->includes.empty(); } bool usesLibraries() const { return !this->usedlibs.empty(); } bool isHandlingDependencies() const { return this->is_handling_dependencies; } - Value lookup_variable(const std::string &name) const; + ValuePtr lookup_variable(const std::string &name) const; typedef boost::unordered_set ModuleContainer; ModuleContainer usedlibs;