summaryrefslogtreecommitdiff
path: root/src/include/tome
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2016-10-05 18:45:08 +0200
committerBardur Arantsson <bardur@scientician.net>2016-10-05 18:45:08 +0200
commitc84490dd6fb5d1e85482c2271e00cb768bae410e (patch)
treec2043c4f418f7565c911b88d6aa926d4b3747230 /src/include/tome
parentdd76070a7d8676a5f13dcc91fc7ed2eb2639d9df (diff)
Change ability_type::{name, desc, action_desc} to std::string
Diffstat (limited to 'src/include/tome')
-rw-r--r--src/include/tome/squelch/tree_printer.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/tome/squelch/tree_printer.hpp b/src/include/tome/squelch/tree_printer.hpp
index e8ee1e56..c9e79af2 100644
--- a/src/include/tome/squelch/tree_printer.hpp
+++ b/src/include/tome/squelch/tree_printer.hpp
@@ -3,6 +3,7 @@
#include <boost/noncopyable.hpp>
#include <cstdint>
+#include <string>
namespace squelch {
@@ -30,7 +31,8 @@ public:
void scroll_right();
- void write(uint8_t color, const char *line);
+ void write(uint8_t color, const char *);
+ void write(uint8_t color, std::string const &);
private:
int m_indent;