summaryrefslogtreecommitdiff
path: root/src/exception.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2012-04-14 01:17:09 +0000
committerMaxime Coste <frrrwww@gmail.com>2012-04-14 01:17:09 +0000
commit93379384036dadada06139245d1e4eca13cabebd (patch)
tree0f5475fd2c7fc212982d881b67444b20a0f8f809 /src/exception.cc
parentaf5c528f043f663b94ce197b0c70ddb3da9224e8 (diff)
replace std::string references with String
Diffstat (limited to 'src/exception.cc')
-rw-r--r--src/exception.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exception.cc b/src/exception.cc
index 0d816062..9bd8f6a2 100644
--- a/src/exception.cc
+++ b/src/exception.cc
@@ -1,12 +1,12 @@
#include "exception.hh"
-#include <string>
+#include "string.hh"
#include <typeinfo>
namespace Kakoune
{
-std::string exception::description() const
+String exception::description() const
{
return typeid(*this).name();
}