編譯器錯誤 C3540
'type': sizeof 無法套用至包含 'auto' 的類型
sizeof 運算符無法套用至指定的型別,因為它包含auto
規範。
範例
下列範例會產生 C3540。
// C3540.cpp
// Compile with /Zc:auto
int main() {
auto x = 123;
sizeof(x); // OK
sizeof(auto); // C3540
return 0;
}
'type': sizeof 無法套用至包含 'auto' 的類型
sizeof 運算符無法套用至指定的型別,因為它包含auto
規範。
下列範例會產生 C3540。
// C3540.cpp
// Compile with /Zc:auto
int main() {
auto x = 123;
sizeof(x); // OK
sizeof(auto); // C3540
return 0;
}