forked from boostorg/regex
fix grievious missing std:: qualification
[SVN r7852]
This commit is contained in:
@ -199,7 +199,7 @@ enum syntax_element_type
|
|||||||
|
|
||||||
#ifdef BOOST_RE_DEBUG
|
#ifdef BOOST_RE_DEBUG
|
||||||
// dwa 09/26/00 - This is needed to suppress warnings about an ambiguous conversion
|
// dwa 09/26/00 - This is needed to suppress warnings about an ambiguous conversion
|
||||||
ostream& operator<<(ostream&, syntax_element_type);
|
std::ostream& operator<<(std::ostream&, syntax_element_type);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
union offset_type
|
union offset_type
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
#ifdef BOOST_RE_DEBUG
|
#ifdef BOOST_RE_DEBUG
|
||||||
|
|
||||||
namespace boost { namespace re_detail {
|
namespace boost { namespace re_detail {
|
||||||
ostream& operator<<(ostream& s, syntax_element_type x)
|
std::ostream& operator<<(std::ostream& s, syntax_element_type x)
|
||||||
{
|
{
|
||||||
return s << static_cast<unsigned long>(x);
|
return s << static_cast<unsigned long>(x);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user