X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2Fstress%2Fmap%2Fmap_type_cuckoo.h;h=85b50205f53d5fc0e5cf8ba231652268f9f30554;hb=1011e89e24d83d53642754691fade33ce8ca5c29;hp=0fd760cea3f9d732d3935f8326c6dcaf92c9aa75;hpb=841156510f66ef0f40f1657ddff2591a5fb7d24b;p=libcds.git diff --git a/test/stress/map/map_type_cuckoo.h b/test/stress/map/map_type_cuckoo.h index 0fd760ce..85b50205 100644 --- a/test/stress/map/map_type_cuckoo.h +++ b/test/stress/map/map_type_cuckoo.h @@ -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_MAP_TYPE_CUCKOO_H @@ -57,7 +57,7 @@ namespace map { template bool erase_with( Q const& key, Pred /*pred*/ ) { - return base_class::erase_with( key, typename std::conditional< base_class::c_isSorted, Pred, typename Pred::equal_to>::type() ); + return base_class::erase_with( key, typename std::conditional< base_class::c_isSorted, Pred, typename Pred::equal_to>::type()); } // for testing @@ -295,7 +295,7 @@ namespace map { static inline void print_stat( cds_test::property_stream& o, CuckooMap< Key, V, Traits > const& s ) { typedef CuckooMap< Key, V, Traits > map_type; - print_stat( o, static_cast(s) ); + print_stat( o, static_cast(s)); } } // namespace map