summaryrefslogtreecommitdiffstats
path: root/src/include/report/problem_data.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/report/problem_data.h')
-rw-r--r--src/include/report/problem_data.h18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/include/report/problem_data.h b/src/include/report/problem_data.h
index c805c37a..f7178077 100644
--- a/src/include/report/problem_data.h
+++ b/src/include/report/problem_data.h
@@ -45,6 +45,7 @@ typedef struct problem_item problem_item;
char *format_problem_item(struct problem_item *item);
+
/* In-memory problem data structure and accessors */
typedef GHashTable problem_data_t;
@@ -77,23 +78,6 @@ const char *get_problem_item_content_or_NULL(problem_data_t *problem_data, const
const char *get_problem_item_content_or_die(problem_data_t *problem_data, const char *key);
-/* Vector of these structures */
-
-typedef GPtrArray vector_of_problem_data_t;
-
-static inline problem_data_t *get_problem_data(vector_of_problem_data_t *vector, unsigned i)
-{
- return (problem_data_t *)g_ptr_array_index(vector, i);
-}
-
-vector_of_problem_data_t *new_vector_of_problem_data(void);
-static inline void free_vector_of_problem_data(vector_of_problem_data_t *vector)
-{
- if (vector)
- g_ptr_array_free(vector, TRUE);
-}
-
-
/* Conversions between in-memory and on-disk formats */
void load_problem_data_from_dump_dir(problem_data_t *problem_data, struct dump_dir *dd);