diff --git a/googletest/src/gtest.cc b/googletest/src/gtest.cc index 0153ecac1..075631d57 100644 --- a/googletest/src/gtest.cc +++ b/googletest/src/gtest.cc @@ -5729,6 +5729,12 @@ void UnitTestImpl::ConfigureXmlOutput() { #endif // GTEST_HAS_FILE_SYSTEM } +#if GTEST_HAS_TERMINAL +void PrintToTerminal() { + // Unsure of whether to use listener system, or to try and print events directly to terminal +} +#endif // GTEST_HAS_TERMINAL + #if GTEST_CAN_STREAM_RESULTS_ // Initializes event listeners for streaming test results in string form. // Must not be called before InitGoogleTest.