mirror of
https://github.com/boostorg/regex.git
synced 2025-07-19 07:12:07 +02:00
Added some missing BOOST_RE_CALL macros
[SVN r10090]
This commit is contained in:
@ -597,7 +597,7 @@ void c_regex_traits<char>::init()
|
||||
++entry_count;
|
||||
}
|
||||
|
||||
void c_regex_traits<char>::update()
|
||||
void BOOST_RE_CALL c_regex_traits<char>::update()
|
||||
{
|
||||
BOOST_RE_GUARD_STACK
|
||||
#ifdef BOOST_RE_THREADS
|
||||
@ -617,7 +617,7 @@ void c_regex_traits<char>::update()
|
||||
sort_type = re_detail::find_sort_syntax(&i, &sort_delim);
|
||||
}
|
||||
|
||||
void c_regex_traits<char>::free()
|
||||
void BOOST_RE_CALL c_regex_traits<char>::free()
|
||||
{
|
||||
BOOST_RE_GUARD_STACK
|
||||
#ifdef BOOST_RE_THREADS
|
||||
|
@ -270,7 +270,7 @@ message_data<char>::message_data(const std::locale& l, const std::string& regex_
|
||||
#endif
|
||||
}
|
||||
|
||||
std::string cpp_regex_traits_base::set_message_catalogue(const std::string& l)
|
||||
std::string BOOST_RE_CALL cpp_regex_traits_base::set_message_catalogue(const std::string& l)
|
||||
{
|
||||
if(sizeof(regex_message_cat) <= l.size())
|
||||
return l;
|
||||
|
@ -373,7 +373,7 @@ void BOOST_RE_CALL w32_traits_base::do_free()
|
||||
}
|
||||
}
|
||||
|
||||
std::string w32_traits_base::error_string(unsigned id)
|
||||
std::string BOOST_RE_CALL w32_traits_base::error_string(unsigned id)
|
||||
{
|
||||
return re_get_error_str(id);
|
||||
}
|
||||
@ -424,7 +424,7 @@ bool BOOST_RE_CALL w32_traits_base::do_lookup_collate(std::string& buf, const ch
|
||||
return result;
|
||||
}
|
||||
|
||||
std::string w32_traits_base::set_message_catalogue(const std::string& l)
|
||||
std::string BOOST_RE_CALL w32_traits_base::set_message_catalogue(const std::string& l)
|
||||
{
|
||||
BOOST_RE_GUARD_STACK
|
||||
#ifdef BOOST_RE_THREADS
|
||||
@ -445,7 +445,7 @@ char w32_traits_base::lower_case_map[map_size];
|
||||
|
||||
w32_regex_traits<char> w32_regex_traits<char>::i;
|
||||
|
||||
void w32_regex_traits<char>::update()
|
||||
void BOOST_RE_CALL w32_regex_traits<char>::update()
|
||||
{
|
||||
BOOST_RE_GUARD_STACK
|
||||
#ifdef BOOST_RE_THREADS
|
||||
|
Reference in New Issue
Block a user