Michael Ellery
fc4cf092f9
Fix cmake install for 3.14 or earlier (3.7 min) ( #522 )
...
* Fix cmake install for 3.14 or earlier (3.7 min)
Fixes : #504 , #505
* Add find_dependency to config file
FIXES : #514
2019-12-29 14:51:04 -05:00
johnmph
48433b9892
Update date.h ( #518 )
...
using decltype in day constructor to be consistent with month and year
2019-12-05 14:00:16 -05:00
Nehal J Wani
4c95165298
Constrain make_zoned for icc16
...
Build fails with Intel Compiler v16:
<source>(1698): error: expression must have a constant value
std::is_class<typename std::decay<decltype(*std::declval<TimeZonePtr&>())>::type>{}
^
2019-11-29 19:45:59 -05:00
Ten10
940f4a5ceb
Support Curl Error Buffer
...
Allow user to get error message when download fails
2019-11-29 19:38:40 -05:00
Lakshay Garg
018a50bcd0
Work around for a NVCC compiler bug
...
The NVCC compiler fails to compile the date library due
to a compiler bug which causes it to emit an error when
directly using std::ratio_{multiply,divide} in the template
instantiations for std::duration. This PR works around the
issue by introducing custom ratio_{multiply,divide} which
delegate to the standard library templates
2019-11-29 19:27:36 -05:00
Howard Hinnant
3e376be2e9
Rename link to time_zone_link
...
* At the request of LEWG
2019-11-08 19:36:09 +00:00
Howard Hinnant
224c71a899
Rename leap to leap_second and leaps to leap_seconds
...
* At the request of LEWG
2019-11-08 19:24:03 +00:00
jgzhuang
67e272a54e
change the order in hh_mm_ss::to_duration() to have correct result on Windows for cases when h is 2147483647 hours and m and s are all 0 ( #501 )
2019-10-24 09:57:36 -04:00
Howard Hinnant
d399e10cba
Bump zoned_time fixes for MSVC from 1900 to 1916
2019-10-22 13:28:48 -04:00
Howard Hinnant
96ffe23f72
Replace INTMAX_MAX with numeric_limits
2019-10-21 22:22:50 -04:00
Mike Ellery
48f1455cd2
CMake refactor for easier subdirectory inclusion
2019-10-18 14:59:37 -04:00
Vitaliy Demidov
e3186e36c2
typo ( #498 )
2019-10-18 14:47:38 -04:00
Howard Hinnant
3f0f9b3cbe
Search for '/' after "zoneinfo" in current_zone()
2019-10-14 15:54:32 -04:00
Griffin Downs
23fa1bb86d
Add vcpkg installation instructions ( #495 )
2019-09-27 09:46:58 -04:00
Howard Hinnant
4481c75192
Improve current_zone().
...
Fixes #454
2019-09-23 22:09:13 -04:00
Erik Rigtorp
e6d2c08159
Honor symbol visibility settings ( #464 )
2019-09-23 22:08:07 -04:00
Howard Hinnant
a5c4b4ebf8
Protect is_am and make12 from ADL
2019-09-17 15:48:15 -04:00
Alexej Harm
44344000f0
Fix MSVC C++ version detection
2019-09-12 19:58:05 -04:00
Erik Rigtorp
6d5ff9b958
Point travis badge to upstream master
2019-09-11 14:00:11 -04:00
Erik Rigtorp
375579eac1
Remove point release verison from descriptions
2019-09-11 14:00:11 -04:00
Erik Rigtorp
2ced83ceff
Add clang 6 and clang 7 builds
2019-09-11 14:00:11 -04:00
Erik Rigtorp
718cbe3f9b
Add gcc 8 build for bionic
2019-09-11 14:00:11 -04:00
Erik Rigtorp
961bf06c32
Add nice names to build matrix
2019-09-11 14:00:11 -04:00
Michael Tsukerman
fe491eff1c
Add travis ci configuration file
2019-09-10 09:36:13 -04:00
Alexej Harm
c56f915cc3
fixed shared library support
2019-09-09 11:47:47 -04:00
Alexej Harm
5e57a19abe
renamed targets to date and tz
2019-09-09 11:47:47 -04:00
Michael Tsukerman
9454aeda2b
set library version to 2.4.1
...
Update CMakeLists.txt to set library version to 2.4.1
2019-09-06 17:32:15 -04:00
Michael Tsukerman
3a343adf6a
Improve main CMake file
...
Rename target date_interface to interface and tz to timezone.
Export targets date::interface and date::timezone from cmake.
2019-09-06 10:29:30 -04:00
KerryJ
d21333f636
Fixes #484
2019-09-03 23:17:43 -04:00
maximilianriemensberger
cb4bf26fc7
Fix compilation error with GCC 5
...
GCC 5 complains that `operator-=` and `operator+=` are not constexpr. The `-` and `+` operator appear seem to be fine.
2019-09-03 22:59:04 -04:00
Tomasz Kamiński
b87eb970c1
Implemented test for checking addition with classes converible to years/months
...
To work this specific test require current implementation
strategy (template with unspecified argument).
2019-09-03 22:52:31 -04:00
Tomasz Kamiński
5a0057587d
Correct behavior for classes for which only lvalue is convertible to string_view.
...
Added OnlyLValueString test case that shows the problem with
current impl. Implemented the change, that accept TimeZonePtrOrName
by forwarding reference (to preserve value category), and
merged time_zone selection into one trait.
2019-09-01 14:43:50 -04:00
Tomasz Kamiński
5345d135b7
Implemented custom time zone deduction test.
...
Implemented test for deduction from the custom time zone ptr.
Used OffsetZone extracted for that purpose.
2019-09-01 14:43:50 -04:00
Tomasz Kamiński
7c020642fb
Fixed deduction guides for GCC 8.
...
The GCC 8 was correctly preffering the deduction guide
syntezied from the std::string_view constructor which is more
specialized than deduction guide. Changed the constructor
so the Duration cannot be deduced from it.
2019-09-01 14:43:50 -04:00
Tomasz Kamiński
1d721d9afd
Implemented set of basic deduction test.
...
Implemented test for deduction from string, string_view,
time_zone ptr and other zoned_time.
2019-09-01 14:43:50 -04:00
Howard Hinnant
141ba85614
Fix space-matches 0 spaces at end of format string
2019-08-23 15:51:18 -04:00
Robert Campion
dca8ddc659
Replace computed value with standard macro
2019-07-21 23:43:29 -04:00
James Beach
1f5c192f4a
Resolve GCC 9.1.0 noexcept warning
2019-07-21 23:31:29 -04:00
James Beach
46ccd69c9c
Resolve GCC 9.1.0 unused-function warning
2019-07-21 23:18:54 -04:00
Si Wei How
c0e7b4e2f7
Make date.h compatible with g++-4.7
2019-07-21 21:48:51 -04:00
AdrienBellanger
09d90a8b5e
Fix operator<< for years with non C locale
...
Fix the issue https://github.com/HowardHinnant/date/issues/392
2019-07-21 21:20:49 -04:00
Paul Dreik
6f0b645df1
#388 add comment on unit test failure ( #442 )
2019-07-21 20:47:33 -04:00
Matt Kline
7ef1a55143
tz.cpp: Cast conversions to/from size_t
...
These cause warnings with -Wsign-conversion.
2019-07-21 20:46:01 -04:00
tomaszkam
27d1e1e54e
Removed undefined behavioir from year_mont_day_last::day ( #456 )
...
This is done to make the result of calling day() on
year_month_day_last object that is !ok() unspecified.
Checked only months, are there are needed to avoid UB.
2019-05-28 09:01:14 -04:00
Jonathan Chapple
7817ebf45a
Update date.h ( #451 )
...
endf -> endif
2019-05-20 09:44:20 -04:00
Howard Hinnant
a029f1105d
Conditionally set _SILENCE_CXX17_UNCAUGHT_EXCEPTION_DEPRECATION_WARNING
2019-05-19 22:46:35 -04:00
Howard Hinnant
44215f6781
Eschew using directives in headers, even at function scope.
...
* There is still an impact on user code, though I'm not sure
if by specification or compiler bug.
* Prefer using declarations instead.
2019-05-19 21:53:29 -04:00
muriukip
ed0368fc75
The URL for windowsZones.xml changed to ( #447 )
...
https://raw.githubusercontent.com/unicode-org/cldr/master/common/supplemental/windowsZones.xml
2019-05-15 12:08:24 -04:00
Elvis Oric
429d9ba739
Add User-Agent curl option in download_to_string function. [ #438 ]
2019-04-19 09:07:03 -04:00
Howard Hinnant
081e9af55b
Migrate ptz.h from jan to January
2019-04-05 22:36:21 -04:00