From ba0a09fd9eda8288dae1fca2f93ad2cc7a29f7db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Thu, 10 Aug 2017 16:43:17 +0200 Subject: [PATCH] Update documentation with changes from 7e4038d --- docs/configuration.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index daa79931..51c05ff7 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -43,12 +43,13 @@ By default a console width of 80 is assumed but this can be controlled by defini CATCH_CONFIG_NOSTDOUT -Catch does not use ```std::cout``` and ```std::cerr``` directly but gets them from ```Catch::cout()``` and ```Catch::cerr()``` respectively. If the above identifier is defined these functions are left unimplemented and you must implement them yourself. Their signatures are: +Catch does not use ```std::cout```, ```std::cerr``` and ```std::clog``` directly but gets them from ```Catch::cout()```, ```Catch::cerr()``` and ```Catch::clog``` respectively. If the above identifier is defined these functions are left unimplemented and you must implement them yourself. Their signatures are: std::ostream& cout(); std::ostream& cerr(); + std::ostream& clog(); -This can be useful on certain platforms that do not provide ```std::cout``` and ```std::cerr```, such as certain embedded systems. +This can be useful on certain platforms that do not provide the standard iostreams, such as certain embedded systems. # C++ conformance toggles