]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Change documentation style of virConnectBaselineCPUFlags
authorJiri Denemark <jdenemar@redhat.com>
Mon, 23 Jun 2025 13:37:36 +0000 (15:37 +0200)
committerJiri Denemark <jdenemar@redhat.com>
Fri, 18 Jul 2025 09:56:13 +0000 (11:56 +0200)
Moving the documentation above each enum item gives us more space for
it.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
include/libvirt/libvirt-host.h

index 3112f2b676175c252bbe2cc1955d0f77203f5fd0..91214ea21b029caf555f62e14ea391a20fa7bd2b 100644 (file)
@@ -970,8 +970,10 @@ int virConnectGetCPUModelNames(virConnectPtr conn,
  * Since: 1.1.2
  */
 typedef enum {
-    VIR_CONNECT_BASELINE_CPU_EXPAND_FEATURES  = (1 << 0),  /* show all features (Since: 1.1.2) */
-    VIR_CONNECT_BASELINE_CPU_MIGRATABLE = (1 << 1),  /* filter out non-migratable features (Since: 1.2.14) */
+    /* show all features (Since: 1.1.2) */
+    VIR_CONNECT_BASELINE_CPU_EXPAND_FEATURES  = (1 << 0),
+    /* filter out non-migratable features (Since: 1.2.14) */
+    VIR_CONNECT_BASELINE_CPU_MIGRATABLE = (1 << 1),
 } virConnectBaselineCPUFlags;
 
 char *virConnectBaselineCPU(virConnectPtr conn,