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/assert.hh | |
| parent | af5c528f043f663b94ce197b0c70ddb3da9224e8 (diff) | |
replace std::string references with String
Diffstat (limited to 'src/assert.hh')
| -rw-r--r-- | src/assert.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/assert.hh b/src/assert.hh index a2b8cb7b..ceee28f2 100644 --- a/src/assert.hh +++ b/src/assert.hh @@ -8,11 +8,11 @@ namespace Kakoune struct assert_failed : logic_error { - assert_failed(const std::string& message); - std::string description() const; + assert_failed(const String& message); + String description() const; private: - std::string m_message; + String m_message; }; } |
