Ticket #1289: a.diff

File a.diff, 639 bytes (added by stimming@…, 15 years ago)

Patch for boost/date_time/time_facet.hpp to fix missed argument passing

  • time_facet.hpp

    old new  
    199199    //! sets default formats for ptime, local_date_time, and time_duration
    200200    explicit time_facet(::size_t a_ref = 0)
    201201      //: base_type(standard_format),
    202       : base_type(default_time_format),
     202      : base_type(default_time_format,
     203                  period_formatter_type(),
     204                  special_values_formatter_type(),
     205                  date_gen_formatter_type(),
     206                  a_ref),
    203207        m_time_duration_format(string_type(duration_sign_negative_only) + default_time_duration_format)
    204208    {}
    205209