From 905d6395b7978a70a667fe470704e47f84e67771 Mon Sep 17 00:00:00 2001 From: Jiri Denemark Date: Mon, 23 Jun 2025 15:37:36 +0200 Subject: [PATCH] Change documentation style of virConnectBaselineCPUFlags Moving the documentation above each enum item gives us more space for it. Signed-off-by: Jiri Denemark Reviewed-by: Michal Privoznik --- 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.47.2