I have a Visual Studio 2008 C++03 application where I supply a policy FooTraits to a class Foo.
struct FooTraits
{
enum { FooVal = 1 };
};
template< typename traits >
class Foo
{
public:
typedef typename traits::FooVal foo_val; // errors on this line
void FooDo( UINT matrix[ foo_val ] ) { /*...*/ };
};
typedef Foo< FooTraits > Foot;
int main( int argc, char* argv[] )
{
Foot f;
UINT matrix[ Foot::foo_val ] = { /*...*/ };
f.FooDo( matrix );
return 0;
}
But, I get a whole series of compiler errors all on the typedef:
error C2146: syntax error : missing ';' before identifier 'foo_val'
error C2838: 'FooVal' : illegal qualified name in member declaration
error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
What’s the correct way to create a policy that defines a fixed value?
The enumberated values introduced by
enumare not, themselves, types. But theenumitself is. Therefore, in:Dummyis the type, notFooVal. You cantypedefDummy, to wit:But you can’t
typedefFooVal, because it’s not a type. Trying totypedefFooValwould be like trying to do this:…which, of course, makes no sense.
Here’s your code, fixed: