summaryrefslogtreecommitdiff
path: root/src/string.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2012-08-29 21:49:36 +0200
committerMaxime Coste <frrrwww@gmail.com>2012-08-29 21:49:36 +0200
commitbbce6b22a3e04fe900ac9565b0703304d651b63a (patch)
tree5c58c76a93534fec3a0c6bcfb477291f1b95aded /src/string.hh
parent8febec0bcf48369336cf94bac889ac27d90c6821 (diff)
remove regex.hh, define Regex directly in string.hh
Diffstat (limited to 'src/string.hh')
-rw-r--r--src/string.hh2
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
{