From a4912a834e791646c54d6891f07afee7f4039e14 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 18 Aug 2001 10:22:53 +0000 Subject: [PATCH] Fixed initialisation order warnings (gcc) [SVN r10887] --- include/boost/regex.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex.hpp b/include/boost/regex.hpp index 6b9f0c8e..7d8225da 100644 --- a/include/boost/regex.hpp +++ b/include/boost/regex.hpp @@ -661,9 +661,9 @@ private: const charT* _leading_string; unsigned int _leading_string_len; re_detail::kmp_info* pkmp; + unsigned error_code_; charT* _expression; traits_type traits_inst; - unsigned error_code_; void BOOST_RE_CALL compile_maps(); void BOOST_RE_CALL compile_map(re_detail::re_syntax_base* node, unsigned char* _map, unsigned int* pnull, unsigned char mask, re_detail::re_syntax_base* terminal = 0)const;