From: khizmax <libcds.dev@gmail.com> Date: Sun, 16 Nov 2014 11:54:01 +0000 (+0300) Subject: Typo fix X-Git-Tag: v2.0.0~81 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ea9fcaea5f9598578efed9cccfdc138f7bdeac19;p=libcds.git Typo fix --- diff --git a/cds/gc/details/hp.h b/cds/gc/details/hp.h index 88b56fa7..b6d052ed 100644 --- a/cds/gc/details/hp.h +++ b/cds/gc/details/hp.h @@ -621,7 +621,7 @@ namespace cds { } cast_ptr; cast_ptr.p = p; - uinion{ + union{ void( *pFunc )(T *); free_retired_ptr_func hpFunc; } cast_func; @@ -629,7 +629,7 @@ namespace cds { retirePtr( details::retired_ptr( cast_ptr.hp, cast_func.hpFunc ) ); */ - retirePtr( details::retired_ptr( reinterpret_cast<void *>( p ), reinterpret_cast<free_retired_ptr_func>( pFunc ) ) ); + retirePtr( details::retired_ptr( reinterpret_cast<void *>( p ), reinterpret_cast<free_retired_ptr_func>( pFunc ))); } /// Places retired pointer \p into thread's array of retired pointer for deferred reclamation