Avertissement du compilateur (niveau 1) C4080
identificateur attendu pour le nom du segment ; 'symbol' trouvé
Le nom du segment dans #pragma alloc_text doit être une chaîne ou un identificateur. Le compilateur ignore le pragma si un identificateur valide est introuvable.
L’exemple suivant génère l’avertissement C4080 :
// C4080.cpp
// compile with: /W1
extern "C" void func(void);
#pragma alloc_text() // C4080
// try this line to resolve the warning
// #pragma alloc_text("mysection", func)
int main() {
}
void func(void) {
}