diff options
author | vladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925> | 2011-11-04 17:56:23 +0000 |
---|---|---|
committer | vladlosev <vladlosev@861a406c-534a-0410-8894-cb66d6ee9925> | 2011-11-04 17:56:23 +0000 |
commit | 8965a6a0d2165f32e6413594bba6367f271f51e7 (patch) | |
tree | ab0e0f5e0fd23697673ec2e0edca67079375dd2c /src/gtest-port.cc | |
parent | 829402edcffe712ed4c79412ca020525cd8295ad (diff) | |
download | googletest-8965a6a0d2165f32e6413594bba6367f271f51e7.tar.gz googletest-8965a6a0d2165f32e6413594bba6367f271f51e7.tar.bz2 googletest-8965a6a0d2165f32e6413594bba6367f271f51e7.zip |
Improves conformance to the Google C++ Style Guide (by Greg Miller).
Diffstat (limited to 'src/gtest-port.cc')
-rw-r--r-- | src/gtest-port.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gtest-port.cc b/src/gtest-port.cc index 6e8dca29..9648eee8 100644 --- a/src/gtest-port.cc +++ b/src/gtest-port.cc @@ -514,7 +514,6 @@ class CapturedStream { public: // The ctor redirects the stream to a temporary file. CapturedStream(int fd) : fd_(fd), uncaptured_fd_(dup(fd)) { - # if GTEST_OS_WINDOWS char temp_dir_path[MAX_PATH + 1] = { '\0' }; // NOLINT char temp_file_path[MAX_PATH + 1] = { '\0' }; // NOLINT |