diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2012-08-29 21:49:36 +0200 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2012-08-29 21:49:36 +0200 |
| commit | bbce6b22a3e04fe900ac9565b0703304d651b63a (patch) | |
| tree | 5c58c76a93534fec3a0c6bcfb477291f1b95aded /src/string.hh | |
| parent | 8febec0bcf48369336cf94bac889ac27d90c6821 (diff) | |
remove regex.hh, define Regex directly in string.hh
Diffstat (limited to 'src/string.hh')
| -rw-r--r-- | src/string.hh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string.hh b/src/string.hh index 58dd79b7..a781b358 100644 --- a/src/string.hh +++ b/src/string.hh @@ -3,6 +3,7 @@ #include <string> #include <iosfwd> +#include <boost/regex.hpp> #include "memoryview.hh" #include "units.hh" @@ -11,6 +12,7 @@ namespace Kakoune { typedef wchar_t Character; +typedef boost::basic_regex<Character> Regex; class String { |
