[PATCH 3/6] Change documentation style of virConnectBaselineCPUFlags

Jiri Denemark via Devel posted 6 patches 5 months, 1 week ago
[PATCH 3/6] Change documentation style of virConnectBaselineCPUFlags
Posted by Jiri Denemark via Devel 5 months, 1 week ago
From: Jiri Denemark <jdenemar@redhat.com>

Moving the documentation above each enum item gives us more space for
it.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
---
 include/libvirt/libvirt-host.h | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/include/libvirt/libvirt-host.h b/include/libvirt/libvirt-host.h
index 3112f2b676..91214ea21b 100644
--- a/include/libvirt/libvirt-host.h
+++ b/include/libvirt/libvirt-host.h
@@ -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,
-- 
2.50.0