mirror of
https://github.com/boostorg/regex.git
synced 2025-07-14 12:56:36 +02:00
Compare commits
3 Commits
boost-1.34
...
boost-1.34
Author | SHA1 | Date | |
---|---|---|---|
ad817c513e | |||
1fe19b815a | |||
d44bf8c41d |
@ -45,6 +45,10 @@ rule check-icu-config ( )
|
||||
{
|
||||
gICU_CORE_LIB = icuuc ;
|
||||
}
|
||||
else if [ GLOB $(dir)/lib : icuuc.* ]
|
||||
{
|
||||
gICU_CORE_LIB = icuuc ;
|
||||
}
|
||||
else if [ GLOB $(dir)/lib : libicuuc.* ]
|
||||
{
|
||||
gICU_CORE_LIB = icuuc ;
|
||||
@ -188,3 +192,4 @@ lib boost_regex : ../src/$(SOURCES) $(ICU_EXTRA_SOURCE)
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -254,7 +254,7 @@ public:
|
||||
{
|
||||
return do_assign(p1, p2, f);
|
||||
}
|
||||
#if !defined(BOOST_NO_MEMBER_TEMPLATES) && !defined(__IBMCPP__)
|
||||
#if !defined(BOOST_NO_MEMBER_TEMPLATES)
|
||||
|
||||
template <class ST, class SA>
|
||||
unsigned int BOOST_REGEX_CALL set_expression(const std::basic_string<charT, ST, SA>& p, flag_type f = regex_constants::normal)
|
||||
@ -590,7 +590,7 @@ public:
|
||||
return this->assign(that);
|
||||
}
|
||||
|
||||
#if !defined(BOOST_NO_MEMBER_TEMPLATES) && !defined(__IBMCPP__)
|
||||
#if !defined(BOOST_NO_MEMBER_TEMPLATES)
|
||||
template <class ST, class SA>
|
||||
explicit reg_expression(const std::basic_string<charT, ST, SA>& p, flag_type f = regex_constants::normal)
|
||||
: basic_regex<charT, traits>(p, f)
|
||||
|
@ -39,8 +39,8 @@ class back_insert_iterator
|
||||
{
|
||||
private:
|
||||
Seq* container;
|
||||
typedef const typename Seq::value_type value_type;
|
||||
public:
|
||||
typedef const typename Seq::value_type value_type;
|
||||
typedef Seq container_type;
|
||||
typedef std::output_iterator_tag iterator_category;
|
||||
|
||||
@ -647,3 +647,4 @@ void test_icu(const wchar_t&, const test_invalid_regex_tag&){}
|
||||
void test_icu(const wchar_t&, const test_regex_replace_tag&){}
|
||||
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user