Nota
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tidħol jew tibdel id-direttorji.
L-aċċess għal din il-paġna jeħtieġ l-awtorizzazzjoni. Tista’ tipprova tibdel id-direttorji.
'label' : unreferenced label
Remarks
The label is defined but never referenced. The compiler ignores the label.
Example
The following example generates C4102:
// C4102.cpp
// compile with: /W3
int main() {
int a;
test: // C4102, remove the unreferenced label to resolve
a = 1;
}