From ea9fcaea5f9598578efed9cccfdc138f7bdeac19 Mon Sep 17 00:00:00 2001 From: khizmax Date: Sun, 16 Nov 2014 14:54:01 +0300 Subject: [PATCH] Typo fix --- cds/gc/details/hp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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( p ), reinterpret_cast( pFunc ) ) ); + retirePtr( details::retired_ptr( reinterpret_cast( p ), reinterpret_cast( pFunc ))); } /// Places retired pointer \p into thread's array of retired pointer for deferred reclamation -- 2.34.1