The API xml description file generator doesn't properly handle cases
when there's either a single comment or mixed use of pre- and post-
comments explaining the values.
Modify the comments to avoid the problem and also append version
information for the exposed values.
Signed-off-by: Victor Toso <victortoso@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
*
*/
typedef enum {
- VIR_STORAGE_VOL_USE_ALLOCATION = 0,
-
- /* Return the physical size in allocation */
- VIR_STORAGE_VOL_GET_PHYSICAL = 1 << 0,
-
+ VIR_STORAGE_VOL_USE_ALLOCATION = 0, /* (Since: v3.0.0) */
+ VIR_STORAGE_VOL_GET_PHYSICAL = 1 << 0, /* Return the physical size in allocation (Since: v3.0.0) */
} virStorageVolInfoFlags;
/**