Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 650 Bytes

compiler-warning-level-3-c4538.md

File metadata and controls

22 lines (18 loc) · 650 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 3) C4538
Compiler Warning (level 3) C4538
11/04/2016
C4538
C4538
747e3d51-b6d0-41c1-a726-7af3253b59d7

Compiler Warning (level 3) C4538

'type' : const/volatile qualifiers on this type are not supported

A qualifier keyword was applied to an array incorrectly. For more information, see array.

The following sample generates C4538:

// C4538.cpp
// compile with: /clr /W3 /LD
const array<int> ^f1();   // C4538
array<const int> ^f2();   // OK