~roguescholar/boost/+git/array:feature/pr-20

Last commit made on 2023-09-08
Get this branch:
git clone -b feature/pr-20 https://git.launchpad.net/~roguescholar/boost/+git/array

Branch merges

Branch information

Name:
feature/pr-20
Repository:
lp:~roguescholar/boost/+git/array

Recent commits

ecc47cb... by Peter Dimov <email address hidden>

Merge branch 'feature/use_invoke_swap' of https://github.com/Lastique/array into feature/pr-20

d9ccba0... by Peter Dimov <email address hidden>

Update ci.yml

bdc9ff1... by Peter Dimov <email address hidden>

Add CMake tests

8ad6749... by Peter Dimov <email address hidden>

Update test/Jamfile

ec72fd8... by Peter Dimov <email address hidden>

Regenerate CMakeLists.txt

3dfc2a0... by Peter Dimov <email address hidden>

Update ci.yml

b19ce67... by Andrey Semashev <email address hidden>

Trim trailing spaces.

c774c93... by Andrey Semashev <email address hidden>

Switch to boost::core::invoke_swap.

boost::swap is deprecated and will be removed. Use boost::core::invoke_swap
as a replacement.

868af27... by Marshall Clow <email address hidden>

Merge pull request #19 from fanquake/use_core_swap

refactor: use core/swap.hpp over boost/swap.hpp

4647fc7... by fanquake <email address hidden>

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

```