diff options
Diffstat (limited to 'gdb/gdb_bfd.h')
-rw-r--r-- | gdb/gdb_bfd.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gdb/gdb_bfd.h b/gdb/gdb_bfd.h index 604365b..eeb782e 100644 --- a/gdb/gdb_bfd.h +++ b/gdb/gdb_bfd.h @@ -45,6 +45,14 @@ struct registry_accessor<bfd> int is_target_filename (const char *name); +/* An overload for strings. */ + +static inline int +is_target_filename (const std::string &name) +{ + return is_target_filename (name.c_str ()); +} + /* Returns nonzero if the filename associated with ABFD starts with TARGET_SYSROOT_PREFIX, zero otherwise. */ |