mirror of
https://github.com/boostorg/regex.git
synced 2025-07-19 15:22:09 +02:00
Simplify adding items to lists, and fix Jamfile build failure.
This commit is contained in:
@ -84,8 +84,8 @@ public:
|
||||
}
|
||||
void add_range(const digraph_type& first, const digraph_type& end)
|
||||
{
|
||||
m_ranges.insert(m_ranges.end(), first);
|
||||
m_ranges.insert(m_ranges.end(), end);
|
||||
m_ranges.push_back(first);
|
||||
m_ranges.push_back(end);
|
||||
if(first.second)
|
||||
{
|
||||
m_has_digraphs = true;
|
||||
@ -110,7 +110,7 @@ public:
|
||||
}
|
||||
void add_equivalent(const digraph_type& s)
|
||||
{
|
||||
m_equivalents.insert(m_equivalents.end(), s);
|
||||
m_equivalents.insert(s);
|
||||
if(s.second)
|
||||
{
|
||||
m_has_digraphs = true;
|
||||
|
@ -26,7 +26,7 @@ EX_SOURCES =
|
||||
winstances.cpp
|
||||
usinstances.cpp ;
|
||||
|
||||
lib boost_regex_extra : $(EX_SOURCES)
|
||||
lib boost_regex_extra : $(EX_SOURCES) ../../build//icu_options
|
||||
:
|
||||
<define>BOOST_REGEX_MATCH_EXTRA=1
|
||||
<link>shared:<define>BOOST_REGEX_DYN_LINK=1
|
||||
|
Reference in New Issue
Block a user