symbol-resolver: remove unused function

This commit is contained in:
Christian Hergert
2021-09-21 16:37:46 -07:00
parent 551d3c31bf
commit 3eca1ff409
2 changed files with 2 additions and 12 deletions

View File

@ -25,8 +25,7 @@
G_BEGIN_DECLS
char *_sysprof_symbol_resolver_load_file (SysprofCaptureReader *reader,
const char *path);
char **_sysprof_symbol_resolver_guess_debug_dirs (const char *path);
char *_sysprof_symbol_resolver_load_file (SysprofCaptureReader *reader,
const char *path);
G_END_DECLS

View File

@ -185,12 +185,3 @@ _sysprof_symbol_resolver_load_file (SysprofCaptureReader *reader,
return g_steal_pointer (&data);
}
char **
_sysprof_symbol_resolver_guess_debug_dirs (const char *path)
{
if (path == NULL)
return NULL;
return NULL;
}