1 --- a/b/boost/boost/date_time/gregorian/greg_facet.hpp 2013-05-31 14:03:30.476695310 +0200
2 +++ a/b/boost/boost/date_time/gregorian/greg_facet.hpp 2013-05-31 14:03:22.894669713 +0200
5 std::istream_iterator<std::basic_string<charT>, charT> beg(is), eos;
7 - typedef boost::date_time::all_date_names_put<greg_facet_config, charT> facet_def;
8 d = from_stream(beg, eos);
11 --- misc/boost_1_44_0/boost/date_time/date_parsing.hpp
12 +++ misc/build/boost_1_44_0/boost/date_time/date_parsing.hpp
17 - typedef typename date_type::year_type year_type;
18 typedef typename date_type::month_type month_type;
20 unsigned short year(0), month(0), day(0);
22 parse_undelimited_date(const std::string& s) {
23 int offsets[] = {4,2,2};
25 - typedef typename date_type::year_type year_type;
26 + //typedef typename date_type::year_type year_type;
27 //typename date_type::ymd_type ymd((year_type::min)(),1,1);
28 unsigned short y = 0, m = 0, d = 0;
30 --- misc/boost_1_44_0/boost/date_time/local_time/local_time_io.hpp
31 +++ misc/build/boost_1_44_0/boost/date_time/local_time/local_time_io.hpp
33 boost::io::ios_flags_saver iflags(os);
34 typedef local_date_time time_type;//::utc_time_type typename
35 typedef date_time::time_facet<time_type, CharT> custom_time_facet;
36 - typedef std::time_put<CharT> std_time_facet;
37 std::ostreambuf_iterator<CharT> oitr(os);
39 if(std::has_facet<custom_time_facet>(os.getloc())) {
41 const boost::local_time::local_time_period& p) {
42 boost::io::ios_flags_saver iflags(os);
43 typedef boost::date_time::time_facet<local_date_time, CharT> custom_facet;
44 - typedef std::time_put<CharT> std_time_facet;
45 std::ostreambuf_iterator<CharT> oitr(os);
46 if (std::has_facet<custom_facet>(os.getloc())) {
47 std::use_facet<custom_facet>(os.getloc()).put(oitr, os, os.fill(), p);
48 --- misc/boost_1_44_0/boost/date_time/posix_time/posix_time_io.hpp
49 +++ misc/build/boost_1_44_0/boost/date_time/posix_time/posix_time_io.hpp
52 boost::io::ios_flags_saver iflags(os);
53 typedef boost::date_time::time_facet<ptime, CharT> custom_ptime_facet;
54 - typedef std::time_put<CharT> std_ptime_facet;
55 std::ostreambuf_iterator<CharT> oitr(os);
56 if (std::has_facet<custom_ptime_facet>(os.getloc()))
57 std::use_facet<custom_ptime_facet>(os.getloc()).put(oitr, os, os.fill(), p);
59 const boost::posix_time::time_period& p) {
60 boost::io::ios_flags_saver iflags(os);
61 typedef boost::date_time::time_facet<ptime, CharT> custom_ptime_facet;
62 - typedef std::time_put<CharT> std_time_facet;
63 std::ostreambuf_iterator<CharT> oitr(os);
64 if (std::has_facet<custom_ptime_facet>(os.getloc())) {
65 std::use_facet<custom_ptime_facet>(os.getloc()).put(oitr, os, os.fill(), p);
68 boost::io::ios_flags_saver iflags(os);
69 typedef boost::date_time::time_facet<ptime, CharT> custom_ptime_facet;
70 - typedef std::time_put<CharT> std_ptime_facet;
71 std::ostreambuf_iterator<CharT> oitr(os);
72 if (std::has_facet<custom_ptime_facet>(os.getloc()))
73 std::use_facet<custom_ptime_facet>(os.getloc()).put(oitr, os, os.fill(), td);
74 --- misc/boost_1_44_0/boost/date_time/string_convert.hpp
75 +++ misc/build/boost_1_44_0/boost/date_time/string_convert.hpp
78 std::basic_string<OutputT> convert_string_type(const std::basic_string<InputT>& inp_str)
80 - typedef std::basic_string<InputT> input_type;
81 typedef std::basic_string<OutputT> output_type;
83 result.insert(result.begin(), inp_str.begin(), inp_str.end());
84 --- misc/boost_1_44_0/boost/date_time/strings_from_facet.hpp
85 +++ misc/build/boost_1_44_0/boost/date_time/strings_from_facet.hpp
88 typedef std::basic_string<charT> string_type;
89 typedef std::vector<string_type> collection_type;
90 - typedef std::basic_ostringstream<charT> ostream_type;
91 typedef std::ostreambuf_iterator<charT> ostream_iter_type;
92 typedef std::basic_ostringstream<charT> stringstream_type;
93 typedef std::time_put<charT> time_put_facet_type;
96 typedef std::basic_string<charT> string_type;
97 typedef std::vector<string_type> collection_type;
98 - typedef std::basic_ostringstream<charT> ostream_type;
99 typedef std::ostreambuf_iterator<charT> ostream_iter_type;
100 typedef std::basic_ostringstream<charT> stringstream_type;
101 typedef std::time_put<charT> time_put_facet_type;