diff options
author | Marius Kintel <marius@kintel.net> | 2011-10-26 23:00:47 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-10-26 23:00:47 (GMT) |
commit | 5299fcb27d61937f067932f984171a6fecc65592 (patch) | |
tree | 963b94a8866243786d547ab19673c62a6dcbbb67 /src/Tree.h | |
parent | 44ef8290c4d36be2d7eef4cd39523f205dd39258 (diff) | |
parent | 3080932440266b1f67ba106a536f3e6e6305fa80 (diff) |
Merge branch 'master' into visitortests
Diffstat (limited to 'src/Tree.h')
-rw-r--r-- | src/Tree.h | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -3,8 +3,6 @@ #include "nodecache.h" -using std::string; - /*! For now, just an abstraction of the node tree which keeps a dump cache based on node indices around. @@ -20,8 +18,8 @@ public: void setRoot(const AbstractNode *root); const AbstractNode *root() const { return this->root_node; } - const string &getString(const AbstractNode &node) const; - const string &getIdString(const AbstractNode &node) const; + const std::string &getString(const AbstractNode &node) const; + const std::string &getIdString(const AbstractNode &node) const; private: const AbstractNode *root_node; |