/vmm, /vms, /vmv (General Purpose Representation)

Used when /vmb, /vmg (Representation Method) is selected as the representation method. These options indicate the inheritance model of the not-yet-encountered class definition.

/vmm
/vms
/vmv

Remarks

The options are described in the following table.

Option

Description

/vmm

Specifies the most general representation of a pointer to a member of a class to be one that uses multiple inheritance.

The corresponding inheritance keyword and argument to #pragma pointers_to_members is multiple_inheritance.

This representation is larger than that required for single inheritance.

If the inheritance model of a class definition for which a pointer to a member is declared is virtual, the compiler generates an error.

/vms

Specifies the most general representation of a pointer to a member of a class to be one that uses either no inheritance or single inheritance.

The corresponding inheritance keyword and argument to #pragma pointers_to_members is single_inheritance.

This is the smallest possible representation of a pointer to a member of a class.

If the inheritance model of a class definition for which a pointer to a member is declared is multiple or virtual, the compiler generates an error.

/vmv

Specifies the most general representation of a pointer to a member of a class to be one that uses virtual inheritance. It never causes an error and is the default.

The corresponding inheritance keyword and argument to #pragma pointers_to_members is virtual_inheritance.

This option requires a larger pointer and additional code to interpret the pointer than the other options.

When you specify one of these inheritance-model options, that model is used for all pointers to class members, regardless of their inheritance type or whether the pointer is declared before or after the class. Therefore, if you always use single-inheritance classes, you can reduce code size by compiling with /vms; however, if you want to use the most general case (at the expense of the largest data representation), compile with /vmv.

To set this compiler option in the Visual Studio development environment

  1. Open the project's Property Pages dialog box. For details, see How to: Open Project Property Pages.

  2. Click the C/C++ folder.

  3. Click the Command Line property page.

  4. Type the compiler option in the Additional Options box.

To set this compiler option programmatically

See Also

Reference

/vmb, /vmg (Representation Method)

Compiler Options

Setting Compiler Options