Title
Typo in locale synopsis
Status
cd1
Section
[locale]
Submitter
Martin Sebor

Created on 2000-10-05.00:00:00 last changed 164 months ago

Messages

Date: 2010-10-21.18:28:33

Proposed resolution:

Add the missing semicolons, i.e., change

    //  construct/copy/destroy:
        locale() throw()
        locale(const locale& other) throw()

in the synopsis in 22.1.1 to

    //  construct/copy/destroy:
        locale() throw();
        locale(const locale& other) throw();
Date: 2000-10-05.00:00:00

The synopsis of the class std::locale in 22.1.1 contains two typos: the semicolons after the declarations of the default ctor locale::locale() and the copy ctor locale::locale(const locale&) are missing.

History
Date User Action Args
2010-10-21 18:28:33adminsetmessages: + msg2060
2000-10-05 00:00:00admincreate