This page is a snapshot from the LWG issues list, see the Library Active Issues List for more information and the meaning of TRDec status.

600. [dec.tr] Wrong parameters for wcstod* functions

Section: 3.9 [dec.tr::trdec.types.cwchar] Status: TRDec Submitter: Daniel Krugler Opened: 2006-05-28 Last modified: 2016-01-31

Priority: Not Prioritized

View all issues with TRDec status.

Discussion:

Daniel writes:

- 3.9.1 'Additions to <cwchar>' provides wrong signatures to the wcstod32, wcstod64, and wcstod128 functions ([the parameters have type pointer-to-] char instead of wchar_t).

Proposed resolution:

Change "3.9.1 Additions to <cwchar> synopsis" to:

       namespace std {
       namespace decimal {
         // 3.9.2 wcstod functions:
         decimal32  wcstod32  (const char wchar_t * nptr, char wchar_t ** endptr);
         decimal64  wcstod64  (const char wchar_t * nptr, char wchar_t ** endptr);
         decimal128 wcstod128 (const char wchar_t * nptr, char wchar_t ** endptr);
       }
       }