Refactoring: add back constness of public API structures
[lttng-ust.git] / include / ust-dynamic-type.h
index cb628ad8a9e90b7b9ddfc9a178800de5e0f6fe49..e63fc4c4c4037372b9ea4b06e382358ef7564542 100644 (file)
@@ -25,14 +25,14 @@ enum lttng_ust_dynamic_type {
        _NR_LTTNG_UST_DYNAMIC_TYPES,
 };
 
-__attribute__((visibility("hidden")))
 int lttng_ust_dynamic_type_choices(size_t *nr_choices,
-               const struct lttng_ust_event_field ***choices);
+               const struct lttng_ust_event_field ***choices)
+       __attribute__((visibility("hidden")));
 
-__attribute__((visibility("hidden")))
-const struct lttng_ust_event_field *lttng_ust_dynamic_type_field(int64_t value);
+const struct lttng_ust_event_field *lttng_ust_dynamic_type_field(int64_t value)
+       __attribute__((visibility("hidden")));
 
-__attribute__((visibility("hidden")))
-const struct lttng_ust_event_field *lttng_ust_dynamic_type_tag_field(void);
+const struct lttng_ust_event_field *lttng_ust_dynamic_type_tag_field(void)
+       __attribute__((visibility("hidden")));
 
 #endif /* _LTTNG_UST_DYNAMIC_TYPE_H */
This page took 0.023854 seconds and 4 git commands to generate.