aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2018-08-16 15:10:07 -0400
committerGitHub <noreply@github.com>2018-08-16 15:10:07 -0400
commitb1bfdf0bf48bb2288ba73bc8f423de2831e0032f (patch)
treed33d05629648a93c9eebeab26abe6e44d82f8b05
parent8c86040dd67276750df67db6d5791fd32cc479a6 (diff)
downloadgoogletest-b1bfdf0bf48bb2288ba73bc8f423de2831e0032f.tar.gz
googletest-b1bfdf0bf48bb2288ba73bc8f423de2831e0032f.tar.bz2
googletest-b1bfdf0bf48bb2288ba73bc8f423de2831e0032f.zip
Small formatting change
And then we can merge
-rw-r--r--googletest/include/gtest/internal/gtest-port.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/include/gtest/internal/gtest-port.h b/googletest/include/gtest/internal/gtest-port.h
index 1d5b24b8..786497d8 100644
--- a/googletest/include/gtest/internal/gtest-port.h
+++ b/googletest/include/gtest/internal/gtest-port.h
@@ -2107,8 +2107,8 @@ class MutexBase {
// particular, the owner_ field (a pthread_t) is not explicitly initialized.
// This allows initialization to work whether pthread_t is a scalar or struct.
// The flag -Wmissing-field-initializers must not be specified for this to work.
-# define GTEST_DEFINE_STATIC_MUTEX_(mutex) \
- ::testing::internal::MutexBase mutex = { PTHREAD_MUTEX_INITIALIZER, false, 0 }
+#define GTEST_DEFINE_STATIC_MUTEX_(mutex) \
+ ::testing::internal::MutexBase mutex = {PTHREAD_MUTEX_INITIALIZER, false, 0}
// The Mutex class can only be used for mutexes created at runtime. It
// shares its API with MutexBase otherwise.