1
1
Fork 0
mirror of https://github.com/trafi/maybe-result-cpp synced 2024-05-08 23:16:11 +02:00

Use markdown status.

This commit is contained in:
Nerijus Arlauskas 2016-07-10 18:18:02 +03:00
parent 9ce1a5be99
commit 9c2fbc7198

View File

@ -1,8 +1,6 @@
# Maybe Result
<div style="width: 100%; height: 32px;">
<img src="https://travis-ci.org/trafi/maybe-result-cpp.svg?branch=master" alt="Status" style="float:left" />
</div>
[![Build Status](https://travis-ci.org/trafi/maybe-result-cpp.svg?branch=master)](https://travis-ci.org/trafi/maybe-result-cpp)
Maybe Result is a return value wrapper that can contain either a value
`T` or error `E`. It borrows ideas heavily from the [C++17's