Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 665 Bytes

compiler-warning-level-1-c4076.md

File metadata and controls

25 lines (19 loc) · 665 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4076
Compiler Warning (level 1) C4076
11/04/2016
C4076
C4076
04581066-313a-4a11-bb60-721e6d038d75

Compiler Warning (level 1) C4076

'type modifier' : can not be used with type 'typename'

Remarks

A type modifier, whether it is signed or unsigned, cannot be used with a non-integer type. type modifier is ignored.

Example

The following sample generates C4076; to fix it, remove the unsigned type modifier:

// C4076.cpp
// compile with: /W1 /LD
unsigned double x;   // C4076