Peter Dimov
ecc47cb42c
Merge branch 'feature/use_invoke_swap' of https://github.com/Lastique/array into feature/pr-20
boost-1.85.0.beta1
boost-1.84.0.beta1
boost-1.84.0
2023-09-08 09:57:29 +03:00
Peter Dimov
d9ccba0907
Update ci.yml
2023-09-08 09:49:45 +03:00
Peter Dimov
bdc9ff1e24
Add CMake tests
2023-09-08 09:47:09 +03:00
Peter Dimov
8ad6749d4a
Update test/Jamfile
2023-09-08 09:38:28 +03:00
Peter Dimov
ec72fd87a1
Regenerate CMakeLists.txt
2023-09-08 09:36:13 +03:00
Peter Dimov
3dfc2a089c
Update ci.yml
2023-09-08 09:35:15 +03:00
Andrey Semashev
b19ce675ad
Trim trailing spaces.
2023-09-03 00:06:37 +03:00
Andrey Semashev
c774c93b3b
Switch to boost::core::invoke_swap.
...
boost::swap is deprecated and will be removed. Use boost::core::invoke_swap
as a replacement.
2023-09-03 00:05:33 +03:00
Marshall Clow
868af27d82
Merge pull request #19 from fanquake/use_core_swap
...
refactor: use core/swap.hpp over boost/swap.hpp
boost-1.83.0.beta1
boost-1.83.0
boost-1.82.0.beta1
boost-1.82.0
boost-1.81.0.beta1
boost-1.81.0
2022-08-23 09:23:28 -07:00
fanquake
4647fc7095
refactor: use core/swap.hpp over boost/swap.hpp
...
The later is deprecated:
```cpp
ifndef BOOST_SWAP_HPP
define BOOST_SWAP_HPP
// The header file at this path is deprecated;
// use boost/core/swap.hpp instead.
include <boost/core/swap.hpp>
endif
```
2022-08-23 15:55:19 +01:00
Marshall Clow
9cc63ae0dd
Merge pull request #18 from renbaoshuo/patch-1
...
chore: bump macos runner version
2022-07-26 09:51:51 -07:00
Baoshuo Ren
a3f15458b8
chore: bump macos runner version
...
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
2022-07-25 18:03:08 +08:00
Marshall Clow
a9a3dbbc41
Merge pull request #16 from sdarwin/feature/gha_fix_1
...
Update GitHub Actions CI file
2021-08-04 07:08:17 -07:00
sdarwin
e384e3780b
Update GitHub Actions CI file
2021-07-30 16:10:15 +00:00
Peter Dimov
63f83dc350
Merge branch 'master' into develop
boost-1.80.0.beta1
boost-1.80.0
boost-1.79.0.beta1
boost-1.79.0
boost-1.78.0.beta1
boost-1.78.0
boost-1.77.0.beta1
boost-1.77.0
2021-06-10 01:29:29 +03:00
Peter Dimov
37c18b3094
Update CMakeLists.txt
2021-06-10 01:22:46 +03:00
Marshall Clow
42d974e5df
Merge pull request #15 from sdarwin/githubactions
...
GitHub Actions config
2021-03-03 18:17:33 -08:00
sdarwin
1572eac629
Add GitHub Actions config [ci skip]
2021-03-01 15:31:58 +00:00
Marshall Clow
0db8c56d3f
Merge pull request #14 from eldiener/develop
...
[skip ci] Add "cxxstd" json field
2021-01-18 18:26:54 -08:00
Edward Diener
674234d401
[skip ci] Add "cxxstd" json field. The "cxxstd" json field is being added to each Boost library's meta json information for libraries in order to specify the minumum C++ standard compilation level. The value of this field matches one of the values for 'cxxstd' in Boost.Build. The purpose of doing this is to provide information for the Boost website documentation for each library which will specify the minimum C++ standard compilation that an end-user must employ in order to use the particular library. This will aid end-users who want to know if they can successfully use a Boost library based on their C++ compiler's compilation level, without having to search the library's documentation to find this out.
2021-01-18 20:49:35 -05:00
Marshall Clow
427c8fad2f
Merge pull request #13 from sdarwin/drone
...
Drone config; I have no idea if this is right or not; Let's give it a try.
2021-01-07 20:47:11 -08:00
sdarwin
f0e79b8ebc
add drone config [ci skip]
2021-01-07 18:08:52 +00:00
Marshall Clow
d026fbcee3
Merge changes from develop for the 1.74.0 release
boost-1.74.0
boost-1.76.0
boost-1.75.0.beta1
boost-1.75.0
boost-1.74.0.beta1
boost-1.76.0.beta1
2020-06-26 10:22:51 -07:00
Marshall Clow
92f66a9f14
Merge pull request #11 from Lastique/patch-1
...
Avoid using deprecated header iterator.hpp
2020-05-10 12:40:34 -07:00
Andrey Semashev
e329330031
Avoid using deprecated header iterator.hpp
...
<boost/detail/iterator.hpp> is marked deprecated and is going to be removed in a future release. Replace it with <iterator> to avoid deprecation warnings.
2020-05-10 19:39:21 +03:00
Marshall Clow
32b074c9ae
Array: Merge bug fixes to master for 1.72.0 beta
boost-1.73.0.beta1
boost-1.73.0
boost-1.72.0
2019-12-03 07:47:51 -08:00
Marshall Clow
453cf59eb9
Replace Boost.Test with lightweight_test from Boost.Core. Modified version of https://github.com/boostorg/array/pull/6 . Thanks to mloskot for the patch.
2019-07-10 15:25:46 -07:00
Marshall Clow
520d8987f7
Merge bug fixes to master for 1.70
boost-1.72.0.beta1
boost-1.71.0.beta1
boost-1.71.0
boost-1.70.0.beta1
boost-1.70.0
2019-03-07 06:33:59 -08:00
Marshall Clow
b279a9005b
Fix off-by-one error in range-checking for 'at()'. thanks to DHilbrich for the bug report.
2019-02-07 07:52:11 -08:00
Marshall Clow
854215e54c
Merge pull request #7 from Mike-Devel/feature/min_cmake
...
Add minimal make file; Sorry for the long delay.
2019-01-14 09:52:33 -08:00
Mike Dev
ee03e0bae8
[CI] Add travis file
2018-12-07 11:34:20 +01:00
Mike Dev
e5f4af3dd2
[CMake] Add self-test for cmake
2018-12-07 11:34:20 +01:00
Mike Dev
85e33cd138
[CMake] Generate cmake target that other libraries can use
...
... to express their dependency on this library and retrieve any
configuration information such as the include directory, binary
to link to (if any), transitive dependencies, necessary compiler
options or the required c++ standards level.
2018-12-07 11:31:02 +01:00
Marshall Clow
8f3aea2200
Merge array bug fixes to master
boost-1.65.1
boost-1.69.0
boost-1.68.0
boost-1.67.0
boost-1.66.0
boost-1.69.0-beta1
boost-1.65.0
boost-1.64.0-beta2
boost-1.64.0-beta1
boost-1.64.0
2017-01-31 08:00:48 -08:00
Marshall Clow
cef221d8b4
Merge pull request #5 from Lastique/patch-1
...
Fix compilation for Oracle Studio 12.5
2017-01-23 20:00:25 -08:00
Andrey Semashev
5d06f1074a
Fix compilation for Oracle Studio 12.5
...
The compiler expects a qualified dependent name after `typename`, so move `const` after the name.
2017-01-24 02:31:27 +04:00
Daniel
4c27456a43
Copy doc jamfile from develop
...
It's need to build the documentation now.
boost-1.63.0
2016-10-27 20:12:38 +01:00
Rene Rivera
16824fe0f1
Add, and update, documentation build targets.
2016-10-07 23:03:40 -05:00
Marshall Clow
0d4fa276f4
Merge pull request #3 from boostorg/pull_request/remove_hash_fwd
...
Replace inclusion of hash_fwd.hpp with a declaration of hash_range. Patch from Peter Dimov.
2015-01-08 14:10:08 -08:00
Peter Dimov
cb4df41bd6
Replace inclusion of hash_fwd.hpp with a declaration of hash_range
2015-01-09 00:01:41 +02:00
Marshall Clow
cd9888316a
Merge pull request #2 from danieljames/metadata
...
Create metadata file.
2014-08-18 09:16:48 -07:00
Daniel James
ce71078681
Add metadata file.
2014-08-18 14:57:18 +01:00
Daniel James
9678f6aa3b
Create merge base for git.
boost-1.60.0
boost-1.61.0
boost-1.62.0
boost-1.59.0
boost-1.58.0
boost-1.57.0
boost-1.56.0
2014-04-06 13:53:46 +01:00
Michel Morin
c0b1609ddb
Merge r86524 (Correct broken links to C++ standard papers); fixes #9212
...
[SVN r86673]
2013-11-13 03:22:55 +00:00
Michel Morin
dfeb6bd0a5
Correct broken links to C++ standard papers. Refs #9212 .
...
[SVN r86524]
2013-10-30 12:51:24 +00:00
Marshall Clow
1966dd034b
Updated license and copyright
...
[SVN r86311]
2013-10-14 21:35:20 +00:00
Marshall Clow
40c5dae84c
Remove tabs
...
[SVN r86310]
2013-10-14 21:31:19 +00:00
Stephen Kelly
4584f63f01
Simplify multi-component ifdefs containing BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
...
[SVN r86248]
2013-10-11 23:20:59 +00:00
Stephen Kelly
2e0052d49f
Remove BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
...
Process #ifndef...#endif conditions.
[SVN r86244]
2013-10-11 23:15:00 +00:00
Stephen Kelly
6ad6249e1c
Array: Remove obsolete MSVC version check.
...
[SVN r85903]
2013-09-25 13:51:37 +00:00