$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] Pervasive dependency upon mpl::bool_
From: Peter Dimov (lists_at_[hidden])
Date: 2014-06-03 05:46:46
> template<class T> struct is_pointer
> {
> BOOST_STATIC_CONSTANT( bool, value = false );
> };
>
> template<class T> struct is_pointer
Grrr.
template<class T> struct is_pointer< T* >
> {
> BOOST_STATIC_CONSTANT( bool, value = true );
> };