Removed redundant spaces
[libcds.git] / test / include / cds_test / hash_func.h
index 6f08e0976aa8a584379542d5ea9f296c0a8ad7e2..22d67d3ddad4c9ec7a91e6251f4636a9c5a39af5 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_HASH_FUNC_H
@@ -52,7 +52,7 @@ namespace cds_test {
 
         hash_type operator()( std::string const& s ) const
         {
-            return CityHash32( s.c_str(), s.length() );
+            return CityHash32( s.c_str(), s.length());
         }
 
         template <typename T>
@@ -82,7 +82,7 @@ namespace cds_test {
 
         hash_type operator()( std::string const& s ) const
         {
-            return CityHash64( s.c_str(), s.length() );
+            return CityHash64( s.c_str(), s.length());
         }
 
         template <typename T>
@@ -112,7 +112,7 @@ namespace cds_test {
 
         hash_type operator()( std::string const& s ) const
         {
-            return CityHash128( s.c_str(), s.length() );
+            return CityHash128( s.c_str(), s.length());
         }
 
         template <typename T>