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/string.hh | |
| parent | af5c528f043f663b94ce197b0c70ddb3da9224e8 (diff) | |
replace std::string references with String
Diffstat (limited to 'src/string.hh')
| -rw-r--r-- | src/string.hh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/string.hh b/src/string.hh new file mode 100644 index 00000000..38a8aaae --- /dev/null +++ b/src/string.hh @@ -0,0 +1,16 @@ +#ifndef string_hh_INCLUDED +#define string_hh_INCLUDED + +#include <string> + +namespace Kakoune +{ + +typedef char Character; +typedef std::string String; + +} + + +#endif // string_hh_INCLUDED + |
