$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Dave Abrahams (abrahams_at_[hidden])
Date: 2000-03-06 08:02:49
on 3/6/00 7:50 AM, Kevin Atkinson at kevinatk_at_[hidden] wrote:
>> Implicit conversion to bool is a terrifying idea, since bools can be
>> promoted to any integer type.
>
> Well pointers have an explicit conversion to bool.....
last I checked, this still wasn't legal:
void f(bool);
inline g(char* p) { f(p); }