Compiler Error C2166
l-value specifies const object
Code attempts to modify an item declared const
.
The following sample generates C2166:
// C2166.cpp
int f();
int main() {
( (const int&) 1 ) = 5; // C2166
}
Tätä selainta ei enää tueta.
Päivitä Microsoft Edgeen, jotta voit hyödyntää uusimpia ominaisuuksia, suojauspäivityksiä ja teknistä tukea.
l-value specifies const object
Code attempts to modify an item declared const
.
The following sample generates C2166:
// C2166.cpp
int f();
int main() {
( (const int&) 1 ) = 5; // C2166
}