Update README.md

This commit is contained in:
Peter Dimov
2021-09-11 18:26:28 +03:00
parent 1af7b165cf
commit c76af4d3cf

View File

@ -1,20 +1,17 @@
# variant2 # Boost.Variant2
This repository contains a never-valueless, strong guarantee, C++11/14/17 This repository contains a never-valueless, strong guarantee, C++11/14/17
implementation of [std::variant](http://en.cppreference.com/w/cpp/utility/variant). implementation of [std::variant](http://en.cppreference.com/w/cpp/utility/variant).
See [the documentation](https://www.boost.org/libs/variant2) See [the documentation](https://www.boost.org/libs/variant2)
for more information. for more information.
The code requires [Boost.Mp11](https://github.com/boostorg/mp11) and The library is part of Boost, starting from release 1.71. It depends on
Boost.Config. Boost.Mp11, Boost.Config, and Boost.Assert.
The library is part of Boost, starting from release 1.71, but the header
`variant.hpp` will also work [standalone](https://godbolt.org/z/nVUNKX).
Supported compilers: Supported compilers:
* g++ 4.8 or later with `-std=c++11` or above * g++ 4.8 or later with `-std=c++11` or above
* clang++ 3.5 or later with `-std=c++11` or above * clang++ 3.9 or later with `-std=c++11` or above
* Visual Studio 2015, 2017, 2019 * Visual Studio 2015, 2017, 2019
Tested on [Travis](https://travis-ci.org/boostorg/variant2/) and Tested on [Travis](https://travis-ci.org/boostorg/variant2/) and