diff options
author | Marius Kintel <marius@kintel.net> | 2011-10-26 14:59:26 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-10-26 14:59:26 (GMT) |
commit | 0f7ea1ddc0d695726c9f66591cfedf50c5310561 (patch) | |
tree | beb077a244ac27a109ab08e4f0f04079ee2b65ab /src/Tree.h | |
parent | ff6d6cda13040e69ef15bb8989ca0f436a8020cc (diff) |
Minor namespace fixes
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; |