| 6760 | }; |
| 6761 | |
| 6762 | bool useColourOnPlatform() { |
| 6763 | return |
| 6764 | #ifdef CATCH_PLATFORM_MAC |
| 6765 | !isDebuggerActive() && |
| 6766 | #endif |
| 6767 | #if !(defined(__DJGPP__) && defined(__STRICT_ANSI__)) |
| 6768 | isatty(STDOUT_FILENO) |
| 6769 | #else |
| 6770 | false |
| 6771 | #endif |
| 6772 | ; |
| 6773 | } |
| 6774 | IColourImpl *platformColourInstance() { |
| 6775 | ErrnoGuard guard; |
| 6776 | IConfigPtr config = getCurrentContext().getConfig(); |
no test coverage detected