You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@stdcxx.apache.org by "Martin Sebor (JIRA)" <ji...@apache.org> on 2007/08/27 01:57:30 UTC

[jira] Updated: (STDCXX-223) [Windows] std::time_put %c time format specifier not implemented

     [ https://issues.apache.org/jira/browse/STDCXX-223?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Martin Sebor updated STDCXX-223:
--------------------------------

    Affects Version/s: 4.1.4
        Fix Version/s: 4.2.1

Added 4.1.4 to the set of affected versions. We should be able to implement this in 4.2.1.

> [Windows] std::time_put %c time format specifier not implemented
> ----------------------------------------------------------------
>
>                 Key: STDCXX-223
>                 URL: https://issues.apache.org/jira/browse/STDCXX-223
>             Project: C++ Standard Library
>          Issue Type: Bug
>          Components: 22. Localization
>    Affects Versions: 4.1.2, 4.1.3, 4.1.4
>         Environment: Windows
>            Reporter: Martin Sebor
>             Fix For: 4.2.1
>
>
> Moved from the Rogue Wave bug tracking database:
> ****Created By: sebor @ Apr 29, 2003 01:34:21 PM****
> -------- Original Message --------
> Subject: puzzle
> Date: Tue, 22 Apr 2003 12:31:46 -0600
> From: "L. Nicoara" <ni...@roguewave.com>
> To: Martin Sebor <se...@roguewave.com>
> This program prints A - Windows, VC7 (also 15d). Is there anything
> obviously wrong with it?
> Liviu
> #include <iostream>
> #include <sstream>
> #include <locale>
> #include <cstring>
> int main ()
> {
>     const char* fmt = "%c";
>     tm t = tm ();
>     t.tm_sec   = 0;
>     t.tm_min   = 0;
>     t.tm_hour  = 0;
>     t.tm_mday  = 13;
>     t.tm_mon   = 8;
>     t.tm_year  = 67;
>     t.tm_wday  = 3;
>     t.tm_isdst = 0;
>     typedef std::ostreambuf_iterator<char> iter_t;
>     std::locale loc ("C");
>     std::ostringstream os;
>     iter_t os_iter(os.rdbuf ());
>     const std::time_put<char,iter_t>& fac =
>         std::use_facet<std::time_put<char,iter_t> >(loc);
>     fac.put(os_iter,os,os.fill(), &t, fmt, fmt + std::strlen (fmt));
>     std::cout << "Date-time : " << os.str().c_str () << std::endl;
>     return 0;
> }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.