summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/outcome/Readme.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
commit19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch)
tree42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/boost/libs/outcome/Readme.md
parentInitial commit. (diff)
downloadceph-upstream.tar.xz
ceph-upstream.zip
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/outcome/Readme.md')
-rw-r--r--src/boost/libs/outcome/Readme.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/boost/libs/outcome/Readme.md b/src/boost/libs/outcome/Readme.md
new file mode 100644
index 000000000..163ae900d
--- /dev/null
+++ b/src/boost/libs/outcome/Readme.md
@@ -0,0 +1,23 @@
+Build and tests passing: Linux [![Build Status](https://travis-ci.org/boostorg/outcome.svg?branch=master)](https://travis-ci.org/boostorg/outcome)
+
+Documentation generated from the master branch shown below (may be newer than boost.org's): http://boostorg.github.io/outcome
+
+This is the Boost-ified edition of standalone https://github.com/ned14/outcome.
+Every commit made to standalone Outcome (develop and master branches only) gets
+automatically converted and merged to here.
+
+Note that changes made here may not get noticed in a timely fashion.
+Please try to send pull requests to https://github.com/ned14/outcome/pulls instead.
+
+Similarly, please report bugs to https://github.com/ned14/outcome/issues.
+
+This library works well in older Boosts missing Outcome. Installation into an
+older Boost and running the test suite would be as follows:
+
+```
+cd boost/libs
+git clone --depth 1 https://github.com/boostorg/outcome.git outcome
+cd ..
+./b2 headers
+./b2 libs/outcome/test cxxflags=--std=c++14
+```