diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2012-04-14 01:17:09 +0000 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2012-04-14 01:17:09 +0000 |
| commit | 93379384036dadada06139245d1e4eca13cabebd (patch) | |
| tree | 0f5475fd2c7fc212982d881b67444b20a0f8f809 /src/exception.cc | |
| parent | af5c528f043f663b94ce197b0c70ddb3da9224e8 (diff) | |
replace std::string references with String
Diffstat (limited to 'src/exception.cc')
| -rw-r--r-- | src/exception.cc | 4 |
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(); } |
