Closed GoogleCodeExporter closed 8 years ago
A similar issue exists with raw_pointer_cast.
raw_pointer_cast should be defined generically:
template<typename Pointer>
typename raw_pointer_cast_result<Pointer>::type
raw_pointer_cast(Pointer ptr)
{
return some_specializable_tempalte<Pointer>::raw_pointer_cast(ptr);
}
The alternative would be to use adl everywhere we use raw_pointer_cast.
Original comment by jaredhoberock
on 24 Aug 2011 at 9:24
Original comment by jaredhoberock
on 31 Aug 2011 at 12:13
dereference no longer exists
Original comment by jaredhoberock
on 23 Jan 2012 at 10:24
Original issue reported on code.google.com by
jaredhoberock
on 19 Aug 2011 at 10:35