Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 524 Bytes

compiler-error-c2194.md

File metadata and controls

23 lines (19 loc) · 524 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2194
Compiler Error C2194
11/04/2016
C2194
C2194
df6e631c-0062-4844-9088-4cc7a0ff879f

Compiler Error C2194

'identifier' : is a text segment

The data_seg pragma uses a segment name used with code_seg.

The following sample generates C2194:

// C2194.cpp
// compile with: /c
#pragma code_seg("MYCODE")
#pragma data_seg("MYCODE")   // C2194
#pragma data_seg("MYCODE2")   // OK