Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 639 Bytes

compiler-warning-level-1-c4075.md

File metadata and controls

27 lines (21 loc) · 639 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4075
Compiler Warning (level 1) C4075
11/04/2016
C4075
C4075
19a700b6-f210-4b9d-a2f2-76cfe39ab178

Compiler Warning (level 1) C4075

initializers put in unrecognized initialization area

A #pragma init_seg uses an unrecognized section name. The compiler ignores the pragma command.

The following sample generates C4075:

// C4075.cpp
// compile with: /W1
#pragma init_seg("mysegg")   // C4075

// try..
// #pragma init_seg(user)

int main() {
}