diff options
author | kosak <kosak@google.com> | 2015-07-14 22:44:39 +0000 |
---|---|---|
committer | kosak <kosak@google.com> | 2015-07-14 22:44:39 +0000 |
commit | 0928adbfea9b7645e884bd95fee23cfd669729cd (patch) | |
tree | c248402689dcf4ec01c363b362f96b0e67013ad2 /src | |
parent | 80167de7055d61ed54808995fb7d632781a5f70e (diff) | |
download | googletest-0928adbfea9b7645e884bd95fee23cfd669729cd.tar.gz googletest-0928adbfea9b7645e884bd95fee23cfd669729cd.tar.bz2 googletest-0928adbfea9b7645e884bd95fee23cfd669729cd.zip |
Move the selection of the flag saver implementation into gtest-port.h and
custom/gtest-port.h.
Diffstat (limited to 'src')
-rw-r--r-- | src/gtest.cc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/gtest.cc b/src/gtest.cc index 6dea6c6a..bb00879d 100644 --- a/src/gtest.cc +++ b/src/gtest.cc @@ -2179,14 +2179,15 @@ int TestResult::test_property_count() const { // Creates a Test object. -// The c'tor saves the values of all Google Test flags. +// The c'tor saves the states of all flags. Test::Test() - : gtest_flag_saver_(new internal::GTestFlagSaver) { + : gtest_flag_saver_(new GTEST_FLAG_SAVER_) { } -// The d'tor restores the values of all Google Test flags. +// The d'tor restores the states of all flags. The actual work is +// done by the d'tor of the gtest_flag_saver_ field, and thus not +// visible here. Test::~Test() { - delete gtest_flag_saver_; } // Sets up the test fixture. |