From 1826080071216e3477a33a0c9d2c30966812b4ff Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sat, 4 May 2002 10:55:51 +0000 Subject: [PATCH] Fixed erroneous functio signature [SVN r13660] --- include/boost/regex/detail/instances.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/regex/detail/instances.hpp b/include/boost/regex/detail/instances.hpp index 629d9e7d..a0569efe 100644 --- a/include/boost/regex/detail/instances.hpp +++ b/include/boost/regex/detail/instances.hpp @@ -113,7 +113,7 @@ template bool BOOST_REGEX_CALL reg_expression::operator<(con template BOOST_DEFAULT_ALLOCATOR(BOOST_REGEX_CHAR_T) BOOST_REGEX_CALL reg_expression::allocator()const; template unsigned int BOOST_REGEX_CALL reg_expression::set_expression(const BOOST_REGEX_CHAR_T* p, const BOOST_REGEX_CHAR_T* end, reg_expression::flag_type f); template void BOOST_REGEX_CALL reg_expression::compile_maps(); -template void BOOST_REGEX_CALL reg_expression::compile_map(re_detail::re_syntax_base* node, unsigned BOOST_REGEX_CHAR_T* _map, unsigned int* pnull, unsigned BOOST_REGEX_CHAR_T mask, re_detail::re_syntax_base* terminal)const; +template void BOOST_REGEX_CALL reg_expression::compile_map(re_detail::re_syntax_base* node, unsigned char* _map, unsigned int* pnull, unsigned char mask, re_detail::re_syntax_base* terminal)const; template bool BOOST_REGEX_CALL reg_expression::probe_start(re_detail::re_syntax_base* node, BOOST_REGEX_CHAR_T c, re_detail::re_syntax_base* terminal)const; template bool BOOST_REGEX_CALL reg_expression::probe_start_null(re_detail::re_syntax_base* node, re_detail::re_syntax_base* terminal)const; template void BOOST_REGEX_CALL reg_expression::fixup_apply(re_detail::re_syntax_base* b, unsigned cbraces);