diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2014-05-04 05:56:45 +0200 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2014-05-04 05:56:45 +0200 |
commit | bcd836eb265cb5e44aeac6a343342f7b372056c6 (patch) | |
tree | 712b0610062aefcd062bad03a5f5f37be4944a96 /test/base | |
parent | 504573a2d336495a9e754d2ee96ba95de450fd6c (diff) | |
download | usdx-bcd836eb265cb5e44aeac6a343342f7b372056c6.tar.gz usdx-bcd836eb265cb5e44aeac6a343342f7b372056c6.tar.xz usdx-bcd836eb265cb5e44aeac6a343342f7b372056c6.zip |
remove semicolon after namespace
Class definitions have to end with a semicolon but not namespaces. So
remove this everywhere.
Diffstat (limited to 'test/base')
-rw-r--r-- | test/base/ringbuffer.cpp | 2 | ||||
-rw-r--r-- | test/base/songloading.cpp | 2 | ||||
-rw-r--r-- | test/base/timestamp.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/base/ringbuffer.cpp b/test/base/ringbuffer.cpp index 16060570..ad0e86a2 100644 --- a/test/base/ringbuffer.cpp +++ b/test/base/ringbuffer.cpp @@ -180,4 +180,4 @@ namespace usdx }; CPPUNIT_TEST_SUITE_REGISTRATION(RingBufferTest); -}; +} diff --git a/test/base/songloading.cpp b/test/base/songloading.cpp index 614fb22d..ec5c3699 100644 --- a/test/base/songloading.cpp +++ b/test/base/songloading.cpp @@ -131,4 +131,4 @@ namespace usdx }; CPPUNIT_TEST_SUITE_REGISTRATION(SongloadingTest); -}; +} diff --git a/test/base/timestamp.cpp b/test/base/timestamp.cpp index eba23787..87186d97 100644 --- a/test/base/timestamp.cpp +++ b/test/base/timestamp.cpp @@ -65,4 +65,4 @@ namespace usdx log4cpp::Category::getInstance("test.usdx.base.timestamp"); CPPUNIT_TEST_SUITE_REGISTRATION(TimestampTest); -}; +} |