Removed trailing spaces
[libcds.git] / test / stress / queue / intrusive_push_pop.cpp
index bc5f0526ebe928a25c2299d18db7495601d69b4a..33640dbedebbceb018c83b0146715012d4da6e8f 100644 (file)
@@ -5,7 +5,7 @@
 
     Source code repo: http://github.com/khizmax/libcds/
     Download: http://sourceforge.net/projects/libcds/files/
-    
+
     Redistribution and use in source and binary forms, with or without
     modification, are permitted provided that the following conditions are met:
 
@@ -195,10 +195,10 @@ namespace {
         };
 
     public:
-        static void SetUpTestCase()\r
-        {\r
-            cds_test::config const& cfg = get_config( "queue_random" );\r
-\r
+        static void SetUpTestCase()
+        {
+            cds_test::config const& cfg = get_config( "queue_random" );
+
             s_nReaderThreadCount = cfg.get_size_t( "ReaderCount", s_nReaderThreadCount );
             s_nWriterThreadCount = cfg.get_size_t( "WriterCount", s_nWriterThreadCount );
             s_nQueueSize = cfg.get_size_t( "QueueSize", s_nQueueSize );
@@ -212,9 +212,9 @@ namespace {
                 s_nWriterThreadCount = 1;
             if ( s_nQueueSize == 0 )
                 s_nQueueSize = 1000;
-        }\r
-\r
-        //static void TearDownTestCase();\r
+        }
+
+        //static void TearDownTestCase();
 
     protected:
         template <class Queue>
@@ -297,7 +297,7 @@ namespace {
                 std::sort( arrData.begin(), arrData.end() );
                 for ( size_t i=1; i < arrData.size(); ++i ) {
                     if ( arrData[i-1] + 1 != arrData[i] ) {
-                        EXPECT_EQ( arrData[i-1] + 1,  arrData[i] ) << "Writer " << nWriter << ": [" << (i-1) << "]=" << arrData[i-1] 
+                        EXPECT_EQ( arrData[i-1] + 1,  arrData[i] ) << "Writer " << nWriter << ": [" << (i-1) << "]=" << arrData[i-1]
                             << ", [" << i << "]=" << arrData[i];
                     }
                 }