doc/api/libbabeltrace2/DoxygenLayout.xml: use `topics` tab
[babeltrace.git] / src / ctf-writer / field-path.c
index 6372959a0302054c80dd1209eae4035a31ad1052..7689a6d8f842a9f7a9e51e808989a5e40dd3919d 100644 (file)
@@ -39,7 +39,6 @@ void field_path_destroy(struct bt_ctf_object *obj)
        g_free(field_path);
 }
 
-BT_HIDDEN
 struct bt_ctf_field_path *bt_ctf_field_path_create(void)
 {
        struct bt_ctf_field_path *field_path = NULL;
@@ -68,7 +67,6 @@ error:
        return NULL;
 }
 
-BT_HIDDEN
 void bt_ctf_field_path_clear(struct bt_ctf_field_path *field_path)
 {
        if (field_path->indexes->len > 0) {
@@ -77,7 +75,6 @@ void bt_ctf_field_path_clear(struct bt_ctf_field_path *field_path)
        }
 }
 
-BT_HIDDEN
 struct bt_ctf_field_path *bt_ctf_field_path_copy(
                struct bt_ctf_field_path *path)
 {
@@ -150,7 +147,7 @@ int bt_ctf_field_path_get_index(const struct bt_ctf_field_path *field_path,
                goto end;
        }
 
-       ret = g_array_index(field_path->indexes, int, index);
+       ret = bt_g_array_index(field_path->indexes, int, index);
 
 end:
        return ret;
This page took 0.023363 seconds and 4 git commands to generate.