From c76af4d3cfe1f24ba4e35baa82be9771b641c41a Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 11 Sep 2021 18:26:28 +0300 Subject: [PATCH] Update README.md --- README.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 83a32fe..8d4bb7c 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,17 @@ -# variant2 +# Boost.Variant2 This repository contains a never-valueless, strong guarantee, C++11/14/17 implementation of [std::variant](http://en.cppreference.com/w/cpp/utility/variant). See [the documentation](https://www.boost.org/libs/variant2) for more information. -The code requires [Boost.Mp11](https://github.com/boostorg/mp11) and -Boost.Config. - -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). +The library is part of Boost, starting from release 1.71. It depends on +Boost.Mp11, Boost.Config, and Boost.Assert. Supported compilers: * 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 Tested on [Travis](https://travis-ci.org/boostorg/variant2/) and