[SVN r37741]
This commit is contained in:
John Maddock
2007-05-22 17:24:25 +00:00
parent 5b9e134fc4
commit d44bf8c41d
2 changed files with 7 additions and 1 deletions

View File

@ -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)

View File

@ -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