Removed trailing spaces
[libcds.git] / test / stress / stack / push_pop.cpp
index c2222f4e2bb2a7509e3fec08fa3d7fd6061107d8..b5de115e7159752b63d85c359b9281d1a369bf21 100644 (file)
@@ -52,13 +52,13 @@ namespace {
             size_t      nNo;
             size_t      nThread;
 
-            value_type() 
+            value_type()
                 : nNo( 0 )
-                , nThread( 0 ) 
+                , nThread( 0 )
             {}
-            value_type( size_t n ) 
+            value_type( size_t n )
                 : nNo( n )
-                , nThread( 0 ) 
+                , nThread( 0 )
             {}
         };
 
@@ -167,10 +167,10 @@ namespace {
         };
 
     protected:
-        static void SetUpTestCase()\r
-        {\r
-            cds_test::config const& cfg = get_config("Stack_PushPop");\r
-\r
+        static void SetUpTestCase()
+        {
+            cds_test::config const& cfg = get_config("Stack_PushPop");
+
             s_nPushThreadCount = cfg.get_size_t( "PushThreadCount", s_nPushThreadCount );
             s_nPopThreadCount  = cfg.get_size_t( "PopThreadCount",  s_nPopThreadCount );
             s_nStackSize       = cfg.get_size_t( "StackSize",       s_nStackSize );
@@ -180,9 +180,9 @@ namespace {
                 s_nPushThreadCount = 1;
             if ( s_nPopThreadCount == 0 )
                 s_nPopThreadCount = 1;
-        }\r
-\r
-        //static void TearDownTestCase();\r
+        }
+
+        //static void TearDownTestCase();
 
         template <typename Stack>
         void test( Stack& stack )