From 7a9887f7eb84451cc0bb69793d90d6a0f7323566 Mon Sep 17 00:00:00 2001 From: jzmaddock Date: Thu, 24 Apr 2014 11:35:58 +0100 Subject: [PATCH] Remove use of deprecated register keyword, see: https://svn.boost.org/trac/boost/ticket/9640 --- include/boost/regex/v4/regex_raw_buffer.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/v4/regex_raw_buffer.hpp b/include/boost/regex/v4/regex_raw_buffer.hpp index 52d45a25..c7792e3d 100644 --- a/include/boost/regex/v4/regex_raw_buffer.hpp +++ b/include/boost/regex/v4/regex_raw_buffer.hpp @@ -129,7 +129,7 @@ public: { if(size_type(last - end) < n) resize(n + (end - start)); - register pointer result = end; + pointer result = end; end += n; return result; }