Commit 410e5f9e authored by Gaspard Petit's avatar Gaspard Petit
Browse files

Fix "unused variable" warning

Fix "unused variable" warning when GTEST_HAS_STREAM_REDIRECTION is set to false in gtest-port.cc
parent 9d21db9e
......@@ -90,6 +90,7 @@
namespace testing {
namespace internal {
#if GTEST_HAS_STREAM_REDIRECTION
#if defined(_MSC_VER) || defined(__BORLANDC__)
// MSVC and C++Builder do not provide a definition of STDERR_FILENO.
const int kStdOutFileno = 1;
......@@ -98,6 +99,7 @@ const int kStdErrFileno = 2;
const int kStdOutFileno = STDOUT_FILENO;
const int kStdErrFileno = STDERR_FILENO;
#endif // _MSC_VER
#endif // GTEST_HAS_STREAM_REDIRECTION
#if GTEST_OS_LINUX || GTEST_OS_GNU_HURD
......
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