Removed redundant spaces
[libcds.git] / test / stress / set / set_type_cuckoo.h
index 5062a77d7532938c750fa55551c74380f4890953..dd76322d5f50ee65ac97139e73c91dfa5ae6427e 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:
 
@@ -25,7 +25,7 @@
     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.     
+    OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
 
 #ifndef CDSUNIT_SET_TYPE_CUCKOO_H
@@ -57,7 +57,7 @@ namespace set {
         template <typename Q, typename Pred>
         bool erase_with( Q const& key, Pred /*pred*/ )
         {
-            return cuckoo_base_class::erase_with( key, typename std::conditional< cuckoo_base_class::c_isSorted, Pred, typename Pred::equal_to>::type() );
+            return cuckoo_base_class::erase_with( key, typename std::conditional< cuckoo_base_class::c_isSorted, Pred, typename Pred::equal_to>::type());
         }
 
         // for testing
@@ -202,7 +202,7 @@ namespace set {
     static inline void print_stat( cds_test::property_stream& o, CuckooSet< V, Traits > const& s )
     {
         typedef CuckooSet< V, Traits > set_type;
-        print_stat( o, static_cast<typename set_type::cuckoo_base_class const&>(s) );
+        print_stat( o, static_cast<typename set_type::cuckoo_base_class const&>(s));
     }
 
 } // namespace set