Condividi tramite


Errore del compilatore C3452

membro argomento di elenco non costante

È stato passato un argomento a un attributo che prevedeva una costante, un valore valutato in fase di compilazione.

Esempio

L'esempio seguente genera l'errore 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"} ) ];