* fix typo in time_period docs (#212)
Co-authored-by: Quinn O'Connor <qoconnor@fastenal.com>
* Fix constexpr of gregorian::date::date(special_values) to improve perf (#214)
GCC up to at least 10.2 fail to resolve
gregorian::date::date(special_values) as constexpr function due to
assignment to *this within the constructor. Refactoring constructor to
initialize the instance once leads to large performance improvement.
* Avoid using likely function as multiple projects define a likely macro (#216)
* Iso doc fixes (#215)
* to_iso_*string() use "." as fractional separator
The fractional separator for the various to_iso_* methods
is "." not "," (per to_iso_string_type() implementation).
Fix the documentation to match the implementation.
* use "ISO 8601" not "iso" in documentation
The standard is "ISO 8601", so use that instead
of just "iso" or "ISO" in comments and documentation.
* fractional seconds only included if non-zero (#110)
Consistently document that the fractional seconds
are only included if non-zero.
Use "where fffffffff" not "were fff".
* Fix ccache saving on cache hit (#211)
See boostorg/boost-ci#166
* chore: bump macos runner version (#213)
GitHub Action is sunsetting the macOS 10.15 Actions runner. It will stop working intermittently until being completely removed by 2022-8-30: https://github.blog/changelog/2022-07-20-github-actions-the-macos-10-15-actions-runner-image-is-being-deprecated-and-will-be-removed-by-8-30-22
Co-authored-by: Quinnsicle <qtoconnor@gmail.com>
Co-authored-by: Quinn O'Connor <qoconnor@fastenal.com>
Co-authored-by: Povilas Kanapickas <povilas@radix.lt>
Co-authored-by: Antony Polukhin <antoshkka@gmail.com>
Co-authored-by: Luke Mewburn <luke@mewburn.net>
Co-authored-by: Alexander Grund <Flamefire@users.noreply.github.com>
Co-authored-by: Baoshuo Ren <i@baoshuo.ren>
* remove legacy to_simple_string and prefer streaming in test code
* driveby fix to clean up self-assign compiler warnings in test code
* driveby fix to clean up unused variable compiler warnings in test code
* another update for issue #123 (constexpr) to allow time_duration constexpr to work
* final updates to make date_time free of library - issue #134
* initial set of core changes for constexpr support (issue #123)
* fixes for constexpr core support based on ci failures (issue #123)
* drive by fix for gcc9.2 warning on polymorphic exception
* fixes for constexpr core support based on for cpp11 and cpp14 build variants (issue #123)
* more fixes for constexpr core support (issue #123) - also fix for issue #124
* next round of changes for constexpr core support (issue #123)
* fix last msvc regression for constexpr core
* driveby fix to remove detail include
* 3rd round of changes for constexpr
* yet another msvc fix for cpp14
* minor doc fix for issue #127 - tm_isddst -> tm_isdst
* minor doc fix for issue #127 - tm_isddst -> tm_isdst
* push constexpr deep into the library including date, ptime (issue #123)
* push constexpr deep into the library including date, ptime (issue #123)
* fix latests regressions from constexpr changes in older gcc
also added project declarations to jamfiles, added a top level jamfile, and fixed the xmldoc jamfile
also fixed a silent failure y2038 issue in localtime handling and fixed a timezone database parse issue
https://svn.boost.org/svn/boost/trunk
........
r43417 | danieljames | 2008-02-26 22:04:55 +0000 (Tue, 26 Feb 2008) | 2 lines
Fix a link to Boost.Bimap.
........
r43418 | danieljames | 2008-02-26 22:07:25 +0000 (Tue, 26 Feb 2008) | 2 lines
Change another link that's no longer in the repository to link to the website.
........
r43422 | danieljames | 2008-02-27 18:51:14 +0000 (Wed, 27 Feb 2008) | 1 line
Fix broken copyright urls. Fixes#1573.
........
r43423 | danieljames | 2008-02-27 19:22:01 +0000 (Wed, 27 Feb 2008) | 1 line
Fix incorrect links to copyright of the form 'http:#www.boost.org
........
[SVN r43425]