Removed redundant spaces
[libcds.git] / cds / container / striped_map / std_hash_map.h
index 3f07addcae734bd5fc2b7f7090485a7b96179b98..884083cdc9bc30f2fc2120b0d2c0f252ec7b4417 100644 (file)
@@ -149,7 +149,7 @@ namespace cds { namespace intrusive { namespace striped_set {
             std::pair<bool, bool> update( const Q& key, Func func, bool bAllowInsert )
             {
                 if ( bAllowInsert ) {
-                    std::pair<iterator, bool> res = m_Map.insert( value_type( key_type( key ), mapped_type()) );
+                    std::pair<iterator, bool> res = m_Map.insert( value_type( key_type( key ), mapped_type()));
                     func( res.second, const_cast<value_type&>(*res.first));
                     return std::make_pair( true, res.second );
                 }