Browse Source

Documentation updated (#27).

main
offa 7 years ago
parent
commit
9e13976790
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      README.md

+ 4
- 2
README.md View File

@@ -5,12 +5,12 @@
[![License](https://img.shields.io/badge/license-GPLv3-yellow.svg)](LICENSE)
![C++](https://img.shields.io/badge/c++-14-green.svg)

Implementation of `scope_guard` and `unique_resource` as proposed in [**N3949**][1].
Implementation of `scope_guard` and `unique_resource` as proposed in [**P0052**][2] (former [N3949][1]).


## Compatibility

This implementation conforms to [N3949][1], except:
This implementation conforms to [P0052][2], except:

###### Namespace
Another namespace is used instead of `std`.
@@ -26,6 +26,7 @@ The function `std::uncaught_exceptions()` is not available in C++14 and is there

## Documentation

- [*P0052R3 - Generic Scope Guard and RAII Wrapper for the Standard Library*][2] (P. Sommerlad, A. L. Sandoval, E. Niebler, D. Krügler)
- [*N3949 - Scoped Resource - Generic RAII Wrapper for the Standard Library*][1] (P. Sommerlad, A. L. Sandoval)


@@ -49,3 +50,4 @@ The function `std::uncaught_exceptions()` is not available in C++14 and is there


[1]: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n3949.pdf
[2]: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2017/p0052r3.pdf

Loading…
Cancel
Save