mirror of
https://github.com/boostorg/regex.git
synced 2025-07-15 05:16:37 +02:00
Improve ICU support. See http://svn.boost.org/trac/boost/ticket/976
[SVN r37741]
This commit is contained in:
@ -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)
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -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