C6506

warning C6506: invalid annotation: <name> property may only be used on values of pointer or array types

This warning indicates that a property is used on a type other than pointer or array types. The Access, Tainted, and Valid properties can be used on all data types. Other properties, such as ValidBytesConst, ValidElementsConst, ElementSize, and NullTerminted support pointer, pointer to members, or array types. For a complete list of properties and the supported data types, see Annotation Properties.

Example

The following code generates this warning:

#include<sal.h>
void f(_Out_ char c)
{
    c = 'd';
}

To correct this warning, use a pointer or an array type, as shown in the following sample code:

#include<sal.h>
void f(_Out_ char *c)
{
    *c = 'd';
}

See Also

Reference

C6516