컴파일러 오류 C3452
목록 인수 멤버가 상수가 아닙니다.
인수가 컴파일 시간에 계산할 수 있는 값인 상수가 필요한 특성에 전달되었습니다.
예시
다음 샘플에서는 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"} ) ];