From: Christophe de Dinechin <[email protected]>
The indent of the rephrasing is that:
- If you have a single constant, use const, e.g. (visible in debugger)
const unsigned max_stuff = 42;
- If you have multiple constants, prefer enums over #define, as
already suggested later in the guide:
enum {
A = 0,
B = 42,
C = -1
}
Signed-off-by: Christophe de Dinechin <[email protected]>
---
docs/spice_style.txt | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/docs/spice_style.txt b/docs/spice_style.txt
index eef4880f..b92b5b00 100644
--- a/docs/spice_style.txt
+++ b/docs/spice_style.txt
@@ -131,7 +131,9 @@ Using goto is allowed in C code for error handling. In any
other case it will be
Defining Constant values
------------------------
-Use defines for constant values for improving readability and ease of changes.
Alternatively, use global `const` variables.
+Use defines for constant values for improving readability and ease of changes.
+Alternatively, use global `const` variables for individual values.
+If multiple related constants are to be defined, consider the use of
enumerations with initializers.
Short functions
---------------
--
2.13.5 (Apple Git-94)
_______________________________________________
Spice-devel mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/spice-devel