summaryrefslogtreecommitdiffstats
path: root/googletest/include/gtest/gtest.h
diff options
context:
space:
mode:
authorTom Hughes <tomhughes@google.com>2023-01-24 19:09:35 (GMT)
committerCopybara-Service <copybara-worker@google.com>2023-01-24 19:10:09 (GMT)
commit2491710524094dc3b77cfa4e8eda2ba8edb0d91c (patch)
tree2c9bdfb14ae930e22a89dcbee3ae97f93a26451a /googletest/include/gtest/gtest.h
parent408471e20cfaa7ccd585fe5e1c6e7b6fba8ce06e (diff)
downloadgoogletest-2491710524094dc3b77cfa4e8eda2ba8edb0d91c.zip
googletest-2491710524094dc3b77cfa4e8eda2ba8edb0d91c.tar.gz
googletest-2491710524094dc3b77cfa4e8eda2ba8edb0d91c.tar.bz2
Fix formatting of C++ files
PiperOrigin-RevId: 504325204 Change-Id: Iaa1d6d0ab1dccaaeef26f9cb109d530835499240
Diffstat (limited to 'googletest/include/gtest/gtest.h')
-rw-r--r--googletest/include/gtest/gtest.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/include/gtest/gtest.h b/googletest/include/gtest/gtest.h
index 3e452a5..c4e01ad 100644
--- a/googletest/include/gtest/gtest.h
+++ b/googletest/include/gtest/gtest.h
@@ -201,8 +201,8 @@ std::set<std::string>* GetIgnoredParameterizedTestSuites();
class GTestNonCopyable {
public:
GTestNonCopyable() = default;
- GTestNonCopyable(const GTestNonCopyable &) = delete;
- GTestNonCopyable &operator=(const GTestNonCopyable &) = delete;
+ GTestNonCopyable(const GTestNonCopyable&) = delete;
+ GTestNonCopyable& operator=(const GTestNonCopyable&) = delete;
~GTestNonCopyable() = default;
};