Topic: Editorial fix [N2134]: Missing parentheses in [re.grammar]


Author: "=?iso-8859-1?q?Daniel_Kr=FCgler?=" <daniel.kruegler@googlemail.com>
Date: Sat, 3 Mar 2007 16:49:31 CST
Raw View
In [re.grammar]-28.13/14, bullet 2 of the first enumeration
item starts with

"otherwise, if flags() & regex_constants::collate) [..]"

where the opening parentheses is missing.

Proposed fix:

Change the above quoted part to

"otherwise, if (flags() & regex_constants::collate) [..]"

Greetings from Bremen,

Daniel Kr   gler


---
[ comp.std.c++ is moderated.  To submit articles, try just posting with ]
[ your news-reader.  If that fails, use mailto:std-c++@ncar.ucar.edu    ]
[              --- Please see the FAQ before posting. ---               ]
[ FAQ: http://www.comeaucomputing.com/csc/faq.html                      ]





Author: pete@versatilecoding.com (Pete Becker)
Date: Sat, 3 Mar 2007 23:01:08 GMT
Raw View
Daniel Kr=FCgler wrote:
> In [re.grammar]-28.13/14, bullet 2 of the first enumeration
> item starts with
>=20
> "otherwise, if flags() & regex_constants::collate) [..]"
>=20
> where the opening parentheses is missing.
>=20
> Proposed fix:
>=20
> Change the above quoted part to
>=20
> "otherwise, if (flags() & regex_constants::collate) [..]"
>=20

Thanks.

--=20

 -- Pete
Roundhouse Consulting, Ltd. (www.versatilecoding.com)
Author of "The Standard C++ Library Extensions: a Tutorial and=20
Reference." (www.petebecker.com/tr1book)

---
[ comp.std.c++ is moderated.  To submit articles, try just posting with ]
[ your news-reader.  If that fails, use mailto:std-c++@ncar.ucar.edu    ]
[              --- Please see the FAQ before posting. ---               ]
[ FAQ: http://www.comeaucomputing.com/csc/faq.html                      ]