fix grievious missing std:: qualification

[SVN r7852]
This commit is contained in:
Dave Abrahams
2000-09-27 01:47:03 +00:00
parent 61696218da
commit fc0bf318a2
2 changed files with 2 additions and 2 deletions

View File

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

View File

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