[Spice-devel] [spice-common v2 3/7] log: Use G_STATIC_ASSERT for spice_static_assert implementation
Christophe Fergeau
cfergeau at redhat.com
Mon Nov 30 03:56:23 PST 2015
This is better than the runtime assertion we had.
Acked-by: Jonathon Jongsma <jjongsma at redhat.com>
---
No changes since v1
common/log.h | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/common/log.h b/common/log.h
index af8f86c..38bbb82 100644
--- a/common/log.h
+++ b/common/log.h
@@ -131,11 +131,8 @@ void spice_log(const char *log_domain,
} G_STMT_END
#endif
-/* FIXME: improve that some day.. */
#ifndef spice_static_assert
-#define spice_static_assert(x) SPICE_STMT_START { \
- spice_assert(x); \
-} SPICE_STMT_END
+#define spice_static_assert(x) G_STATIC_ASSERT(x)
#endif
SPICE_END_DECLS
--
2.5.0
More information about the Spice-devel
mailing list