Muistiinpano
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää kirjautua sisään tai vaihtaa hakemistoja.
Tälle sivulle pääsy edellyttää valtuutusta. Voit yrittää vaihtaa hakemistoja.
list argument member not constant
Remarks
An argument was passed to an attribute that expected a constant, a value that can be evaluated at compile time.
Example
The following example generates 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"} ) ];