diff options
author | Florian Becker <fb@vxapps.com> | 2021-10-01 02:30:54 +0800 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2021-10-01 02:30:54 +0800 |
commit | 6e077ed0705d9bf67f1b643eec367d5815a589b2 (patch) | |
tree | f865d99949234a99fcbce3fa81cf0ec1c45c4ced | |
parent | ed24ec011df58256ac275d434eba131027843184 (diff) | |
download | cppunit-6e077ed0705d9bf67f1b643eec367d5815a589b2.tar.gz |
remove superfluous semicolons
-rw-r--r-- | include/cppunit/Message.h | 2 | ||||
-rw-r--r-- | include/cppunit/Test.h | 2 | ||||
-rw-r--r-- | include/cppunit/TestFixture.h | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/include/cppunit/Message.h b/include/cppunit/Message.h index c3d8d92..b08b721 100644 --- a/include/cppunit/Message.h +++ b/include/cppunit/Message.h @@ -34,7 +34,7 @@ CPPUNIT_NS_BEGIN class CPPUNIT_API Message { public: - Message() {}; + Message() {} // Ensure thread-safe copy by detaching the string. Message( const Message &other ); diff --git a/include/cppunit/Test.h b/include/cppunit/Test.h index 2a8fada..3a20b36 100644 --- a/include/cppunit/Test.h +++ b/include/cppunit/Test.h @@ -25,7 +25,7 @@ class TestPath; class CPPUNIT_API Test { public: - virtual ~Test() {}; + virtual ~Test() {} /*! \brief Run the test, collecting results. */ diff --git a/include/cppunit/TestFixture.h b/include/cppunit/TestFixture.h index 1223adb..da854b6 100644 --- a/include/cppunit/TestFixture.h +++ b/include/cppunit/TestFixture.h @@ -83,13 +83,13 @@ CPPUNIT_NS_BEGIN class CPPUNIT_API TestFixture { public: - virtual ~TestFixture() {}; + virtual ~TestFixture() {} //! \brief Set up context before running a test. - virtual void setUp() {}; + virtual void setUp() {} //! Clean up after the test run. - virtual void tearDown() {}; + virtual void tearDown() {} }; |