From 332151bd11feae56f3389ade4aba7b0c6ed82940 Mon Sep 17 00:00:00 2001
From: Adam Wardynski <award@.(win7-laptop)>
Date: Sun, 28 Nov 2010 04:46:39 +0100
Subject: [PATCH] Some more of small fixes

---
 libwccl/ops/operator.h         | 2 +-
 libwccl/ops/parsedexpression.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libwccl/ops/operator.h b/libwccl/ops/operator.h
index 0ce8013..1d2920d 100644
--- a/libwccl/ops/operator.h
+++ b/libwccl/ops/operator.h
@@ -209,7 +209,7 @@ protected:
 	Operator* clone_internal() const;
 
 private:
-	boost::shared_ptr<Function<const T> > function_body_;
+	boost::shared_ptr<const Function<T> > function_body_;
 };
 
 //--- implementation details ---
diff --git a/libwccl/ops/parsedexpression.h b/libwccl/ops/parsedexpression.h
index efe9905..c4174d9 100644
--- a/libwccl/ops/parsedexpression.h
+++ b/libwccl/ops/parsedexpression.h
@@ -202,7 +202,7 @@ void ParsedExpression::set(const std::string& var_name, const T& value) {
 }
 
 inline
-void clean()
+void ParsedExpression::clean()
 {
 	//TODO - imlement this. The Variables object doesn't really
 	//provide a way to do that atm so it should be changed
-- 
GitLab