plugins/ctf/common/notif-iter/notif-iter.c: add logging
[babeltrace.git] / lib / ctf-ir / field-path.c
index ac42ef5cc481de6d61dd98e689cdc6c10dc26d0e..97ce554e2592bbbe287d0ab71b3a4c48be26aad9 100644 (file)
@@ -170,29 +170,3 @@ int bt_ctf_field_path_get_index(const struct bt_ctf_field_path *field_path,
 end:
        return ret;
 }
-
-BT_HIDDEN
-GString *bt_ctf_field_path_string(struct bt_ctf_field_path *path)
-{
-       GString *str = g_string_new(NULL);
-       size_t i;
-
-       assert(path);
-
-       if (!str) {
-               goto end;
-       }
-
-       g_string_append_printf(str, "[%s", bt_ctf_scope_string(path->root));
-
-       for (i = 0; i < path->indexes->len; i++) {
-               int index = g_array_index(path->indexes, int, i);
-
-               g_string_append_printf(str, ", %d", index);
-       }
-
-       g_string_append(str, "]");
-
-end:
-       return str;
-}
This page took 0.024169 seconds and 4 git commands to generate.