diff options
-rw-r--r-- | testing/platform_test.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/testing/platform_test.h b/testing/platform_test.h index f10a938..04fc845 100644 --- a/testing/platform_test.h +++ b/testing/platform_test.h @@ -20,9 +20,11 @@ class NSAutoreleasePool; // implemented on the Mac. To enable this for another platform, just adjust // the #ifdefs and add a platform_test_<platform>.cc implementation file. class PlatformTest : public testing::Test { + public: + virtual ~PlatformTest(); + protected: PlatformTest(); - virtual ~PlatformTest(); private: NSAutoreleasePool* pool_; |