$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [boost] [Review:Algorithms] Order of args to clamp
From: Christian Holmquist (c.holmquist_at_[hidden])
Date: 2011-09-26 09:47:19
On 26 September 2011 06:02, Olaf van der Spek <ml_at_[hidden]> wrote:
> On Mon, Sep 26, 2011 at 8:30 AM, Christian Holmquist
> <c.holmquist_at_[hidden]> wrote:
> > Sometimes types unfortunately have implicit conversion, and if the
> compiler
> > finds them (I guess that what's common_type deduces?),I might end up with
> a
> > bogus expression that unfortunately compiles.
>
> Could you give a concrete example (with 3 type clamp)?
>
enum A{a};
enum B(b);
main()
{
clamp(0, a, b);
}