lib: Reset libbabeltrace2 to SONANE 0
[babeltrace.git] / include / babeltrace / graph / self-component-filter.h
index 36ac696cd4507e162599934efb35f6d30bcc04ba..3fec35cf8424e6c89d088d8ba389b1e748d70ec0 100644 (file)
@@ -31,7 +31,8 @@
 
 /*
  * For bt_component_filter, bt_self_component, bt_self_component_filter,
- * bt_self_component_port_input, bt_self_component_port_output
+ * bt_self_component_port_input, bt_self_component_port_output,
+ * __BT_UPCAST, __BT_UPCAST_CONST
  */
 #include <babeltrace/types.h>
 
@@ -43,7 +44,7 @@ static inline
 bt_self_component *bt_self_component_filter_as_self_component(
                bt_self_component_filter *self_comp_filter)
 {
-       return (void *) self_comp_filter;
+       return __BT_UPCAST(bt_self_component, self_comp_filter);
 }
 
 static inline
@@ -51,12 +52,9 @@ const bt_component_filter *
 bt_self_component_filter_as_component_filter(
                bt_self_component_filter *self_comp_filter)
 {
-       return (const void *) self_comp_filter;
+       return __BT_UPCAST_CONST(bt_component_filter, self_comp_filter);
 }
 
-extern bt_component_filter *bt_component_filter_borrow_from_self(
-               bt_self_component_filter *self_component);
-
 extern bt_self_component_port_output *
 bt_self_component_filter_borrow_output_port_by_name(
                bt_self_component_filter *self_component,
This page took 0.024006 seconds and 4 git commands to generate.