This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Prohibit enum <-> int mixup


On 30 January 2011 20:11, Enrico Weigelt wrote:
> * Jonathan Wakely <jwakely.gcc@gmail.com> wrote:
>
>> Technically what is allowed is implicit conversion from enum to int.
>> In C++0x you can define a scoped enum which doesn't allow the
>> conversion.
>
> How exactly is this done ?

enum class foo { bar };

foo f = foo::bar;

int i = foo::bar;  // error, no conversion


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]