[Python-Dev] PEP 285: Adding a bool type

David Abrahams david.abrahams at rcn.com
Sat Mar 30 11:08:48 EST 2002


----- Original Message -----
From: "Andrew Koenig" <ark at research.att.com>

> David>     void f(int const&);
> David>     f(false); // error!
>
> For the sake of nitpicking correctness, I cannot help but point out
> that there is nothing wrong with the call of f(false) above unless you
> drop the "const" from f's parameter type.

Yeah, I realized that after posting it, and hoped nobody would notice.

void f(int const*);
bool x = false;
f(&x); // error!


thanks-for-nothing-ly y'rs,
dave





More information about the Python-list mailing list