aboutsummaryrefslogtreecommitdiff
path: root/value.h
diff options
context:
space:
mode:
authorShinichiro Hamaji <shinichiro.hamaji@gmail.com>2015-08-14 17:19:34 +0900
committerShinichiro Hamaji <shinichiro.hamaji@gmail.com>2015-08-14 17:22:25 +0900
commitfb415ad2b0835e251b4d5cb5a8397b80c41525d6 (patch)
tree04957b34c110e69ac1dc3b3f21443a39e0bb5182 /value.h
parent5081c71d90a099a96148c39835a93c8c1eff1756 (diff)
downloadkati-fb415ad2b0835e251b4d5cb5a8397b80c41525d6.tar.gz
[C++] Remove all shared_ptr<string>
Diffstat (limited to 'value.h')
-rw-r--r--value.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/value.h b/value.h
index 5a5d4e7..51ca29c 100644
--- a/value.h
+++ b/value.h
@@ -15,7 +15,6 @@
#ifndef VALUE_H_
#define VALUE_H_
-#include <memory>
#include <string>
#include <vector>
@@ -29,7 +28,7 @@ struct Loc;
class Evaluable {
public:
virtual void Eval(Evaluator* ev, string* s) const = 0;
- virtual shared_ptr<string> Eval(Evaluator*) const;
+ string Eval(Evaluator*) const;
protected:
Evaluable();