Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 825 Bytes

compiler-warning-level-1-c4325.md

File metadata and controls

47 lines (29 loc) · 825 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4325
Compiler Warning (level 1) C4325
08/27/2018
C4325
C4325
8127a08c-d626-481b-aa7b-04a3fdc9a9ec

Compiler Warning (level 1) C4325

attributes for standard section 'section' ignored

Remarks

You may not change the attributes of a standard section. For example:

#pragma section(".sdata", long)

This would overwrite the .sdata standard section which uses the short data type with the long data type.

Standard sections whose attributes you may not change include,

  • .data

  • .sdata

  • .bss

  • .sbss

  • .text

  • .const

  • .sconst

  • .rdata

  • .srdata

Additional sections may be added later.

See also

section