In the following C++ code:
typedef enum { a, b, c } Test;
int foo(Test test) {
switch (test) {
case a: return 0;
case b: return 1;
case c: return 0;
}
}
a warning is issued when compiling with -Wall, saying that control reaches end of non-void function. Why?
Edit
Its not generally correct to say that the variable test in the example can contain any value.
foo(12354) does not compile:
> test.cpp:15:14: error: invalid conversion from ‘int’ to ‘Test’ > test.cpp:15:14: error: initializing argument 1 of ‘int foo(Test)’
because 12354 isn't a valid Test value (though it indeed would be valid in plain C, but it's not in C++).
You sure could explicitly cast an arbitrary integer constant to the enum type, but isn't that considered Undefined Behaviour?
foo(12345)may not compile,foo(Test(12345))does. (gcc 4.2.1) – Beta Jun 16 '11 at 18:51typedefisn't needed in C++, and why not juststatic_cast<int>your enum value? No need for a special function there. The reverse is more tricky of course, because without a c++0xenum classyou won't be sure what you're doing is correct. – rubenvb Jun 16 '11 at 18:51;). – ulidtko Jun 16 '11 at 18:57:)– rubenvb Jun 16 '11 at 18:57intthese days, but there are rules in the Standard about how alternative types should be selected if some enumeration values can't fit in that type). Hopefully a compiler would warn if the value you provided was outside the range the enum's underlying integral type could store, but even then I'd expect it to chop the value into range much likechar(2873)would. – Tony D Jun 17 '11 at 1:02