Add documentation for CATCH_CONFIG_ENABLE_OPTIONAL_STRINGMAKER

Related to #1510
This commit is contained in:
Martin Hořeňovský 2019-01-31 15:36:48 +01:00
parent 16dc219704
commit 67308bb606
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 6 additions and 5 deletions

View File

@ -204,6 +204,7 @@ By default, Catch does not stringify some types from the standard library. This
CATCH_CONFIG_ENABLE_TUPLE_STRINGMAKER // Provide StringMaker specialization for std::tuple
CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER // Provide StringMaker specialization for std::chrono::duration, std::chrono::timepoint
CATCH_CONFIG_ENABLE_VARIANT_STRINGMAKER // Provide StringMaker specialization for std::variant, std::monostate (on C++17)
CATCH_CONFIG_ENABLE_OPTIONAL_STRINGMAKER // Provide StringMaker specialization for std::optional (on C++17)
CATCH_CONFIG_ENABLE_ALL_STRINGMAKERS // Defines all of the above