summaryrefslogtreecommitdiff
path: root/src/string.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2014-01-09 19:50:01 +0000
committerMaxime Coste <frrrwww@gmail.com>2014-01-09 19:59:26 +0000
commite6884f989c2d955b8893d9b8eccc80f8cda0c7ca (patch)
treed479e69eb8f3888f6345072aacb71b32a98d4cd6 /src/string.hh
parent560b4ab0b5551091754bcd331d1ac471c077aaab (diff)
Style changes, replace typedefs with usings
Diffstat (limited to 'src/string.hh')
-rw-r--r--src/string.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string.hh b/src/string.hh
index 176c7269..75f2e8b0 100644
--- a/src/string.hh
+++ b/src/string.hh
@@ -11,7 +11,7 @@
namespace Kakoune
{
-typedef boost::regex Regex;
+using Regex = boost::regex;
class String : public std::string
{