Commit 67b9f193 by Niels

cleanup after closing #324

parent bb9d87ad
...@@ -497,6 +497,7 @@ I deeply appreciate the help of the following people. ...@@ -497,6 +497,7 @@ I deeply appreciate the help of the following people.
- [Stefan](https://github.com/5tefan) fixed a minor issue in the documentation. - [Stefan](https://github.com/5tefan) fixed a minor issue in the documentation.
- [Vasil Dimov](https://github.com/vasild) fixed the documentation regarding conversions from `std::multiset`. - [Vasil Dimov](https://github.com/vasild) fixed the documentation regarding conversions from `std::multiset`.
- [ChristophJud](https://github.com/ChristophJud) overworked the CMake files to ease project inclusion. - [ChristophJud](https://github.com/ChristophJud) overworked the CMake files to ease project inclusion.
- [Vladimir Petrigo](https://github.com/vpetrigo) made a SFINAE hack more readable.
Thanks a lot for helping out! Thanks a lot for helping out!
...@@ -515,7 +516,7 @@ To compile and run the tests, you need to execute ...@@ -515,7 +516,7 @@ To compile and run the tests, you need to execute
$ make check $ make check
=============================================================================== ===============================================================================
All tests passed (8905166 assertions in 35 test cases) All tests passed (8905168 assertions in 35 test cases)
``` ```
Alternatively, you can use [https://cmake.org](CMake) and run Alternatively, you can use [https://cmake.org](CMake) and run
......
...@@ -107,7 +107,7 @@ such as sequence containers. For instance, `std::map` passes the test as it ...@@ -107,7 +107,7 @@ such as sequence containers. For instance, `std::map` passes the test as it
contains a `mapped_type`, whereas `std::vector` fails the test. contains a `mapped_type`, whereas `std::vector` fails the test.
@sa http://stackoverflow.com/a/7728728/266378 @sa http://stackoverflow.com/a/7728728/266378
@since version 1.0.0 @since version 1.0.0, overworked in version 2.0.6
*/ */
template<typename T> template<typename T>
struct has_mapped_type struct has_mapped_type
......
...@@ -107,7 +107,7 @@ such as sequence containers. For instance, `std::map` passes the test as it ...@@ -107,7 +107,7 @@ such as sequence containers. For instance, `std::map` passes the test as it
contains a `mapped_type`, whereas `std::vector` fails the test. contains a `mapped_type`, whereas `std::vector` fails the test.
@sa http://stackoverflow.com/a/7728728/266378 @sa http://stackoverflow.com/a/7728728/266378
@since version 1.0.0 @since version 1.0.0, overworked in version 2.0.6
*/ */
template<typename T> template<typename T>
struct has_mapped_type struct has_mapped_type
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment