2
0
mirror of https://github.com/boostorg/regex.git synced 2026-02-15 01:12:23 +00:00

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

@@ -33,7 +33,7 @@
#ifdef BOOST_RE_DEBUG
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);
}