Kompilatorfel C3452

listargumentmedlem inte konstant

Anmärkningar

Ett argument skickades till ett attribut som förväntade sig en konstant, ett värde som kan utvärderas vid kompileringstillfället.

Example

I följande exempel genereras C3452.

// C3452.cpp
// compile with: /c
int i;
[module( name="mod", type=dll, custom={i} ) ];   // C3452
// try the following line instead
// [module( name="mod", type=dll, custom={"a"} ) ];