* Changed greg_month and greg_weekday to be not marked as exported/imported.
Both greg_month and greg_weekday classes are implemented completely in headers,
so they need not be marked with BOOST_DATE_TIME_DECL. For consistency with other
similar classes, they are now marked with BOOST_SYMBOL_VISIBLE.
This should fix linking errors on Windows/MSVC, where all members of greg_month
and greg_weekday classes remain unresolved as they are expected to be
implemented in a shared library.
* Enabled shared and static linking in AppVeyor CI.
* Added a test generator for whether all public headers are self-contained.
The generator creates a compile test for every public header, unless
BOOST_DATE_TIME_TEST_WITHOUT_SELF_CONTAINED_HEADER_TESTS environment variable
is set to 1.
* Only enable self-contained header tests on a few jobs.
There is no point in performing self-contained header tests on every compiler
configuration, so running them only on some saves CI time.
* Make public headers self-contained.
This commit:
- Adds missing includes.
- Adjusts gregorian namespace qualification in a few places to use use
equivalent symbols from date_time and not have to include gregorian
headers.
- Converts tabs to spaces and trims trailing spaces.
This makes the self-contained header tests pass on Linux.
* Move special_value_from_string definition to parsers.hpp.
This resolves different attributes applied to the function definition
in parsers.hpp and greg_month.hpp. The function is now inline and defined
in parsers.hpp.
Also, the commit converts tabs to spaces and trims trailing spaces.
Fixes https://github.com/boostorg/date_time/issues/143.
* Convert tabs to spaces and trim trailing spaces.
* pull request to make date-time all inline (#135)
* 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
* add stub library for backward compatibility (#137)
* 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
* make a stub library for backward compatibility of libs that link date_time library
* suppressed const qualifier on function return type (#138)
* suppressed const qualifier on function return type
As warned in https://www.boost.org/development/tests/develop/output/teeks99-dkr-dg4-6-warn-date_time-gcc-4-6~c++0x~warn-warnings.html#hours_special_value
```../boost/date_time/gregorian/greg_weekday.hpp:52:41: warning: type qualifiers ignored on function return type [-Wignored-qualifiers]
../boost/date_time/gregorian/greg_weekday.hpp:61:40: warning: type qualifiers ignored on function return type [-Wignored-qualifiers]```
* trivial commit to trigger CI
* fix c++2a ambiguity on clang10 with operator== issue #132 (#140)
Co-authored-by: joaquintides <joaquin.lopezmunoz@gmail.com>
* 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
* make a stub library for backward compatibility of libs that link date_time library
* 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
* Synchronize each miscrosec test to the next second (#109)
* Synchronize each miscrosec test to the next second
The aim is to avoid false positives in test_microsec when the seconds,
minutes or hours change during time read between the second_clock and
the microsec_clock.
* Improved readability of the microcec_time_clock test
* Improve performance of adding and subtracting time durations from a ptime. (#99)
Modifying ptime objects by adding and subtracting time durations was
inefficient because it extracted the date and time of day and then
re-constructed a ptime using the date and modified time of day.
This can be avoided by using the existing time_system utilities which
perform the operation by adjusting the number of ticks.
Performance is improved by a factor of 48 on my system.
* Update CI Scripts
* Add time_duration helper functions: (#113)
1. is_positive()
- Return boolean value to indicate whether or not time duration is
positive.
2. is_zero()
- Return boolean value to indicate whether or not time duration is
zero.
3. abs()
- Return a time_duration which is the absolute value of time
duration.
Added documentation for these helper functions and improved existing
documentation to indicate constness, return values or static
functions.
* Cease dependence on MPL (#115)
1. is_positive()
- Return boolean value to indicate whether or not time duration is
positive.
2. is_zero()
- Return boolean value to indicate whether or not time duration is
zero.
3. abs()
- Return a time_duration which is the absolute value of time
duration.
Added documentation for these helper functions and improved existing
documentation to indicate constness, return values or static
functions.
Modifying ptime objects by adding and subtracting time durations was
inefficient because it extracted the date and time of day and then
re-constructed a ptime using the date and modified time of day.
This can be avoided by using the existing time_system utilities which
perform the operation by adjusting the number of ticks.
Performance is improved by a factor of 48 on my system.
* Synchronize each miscrosec test to the next second
The aim is to avoid false positives in test_microsec when the seconds,
minutes or hours change during time read between the second_clock and
the microsec_clock.
* Improved readability of the microcec_time_clock test
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