gdb: use gdb_tilde_expand instead of gdb_tilde_expand_up in source_script_with_search
authorSimon Marchi <simon.marchi@efficios.com>
Thu, 14 Apr 2022 00:12:37 +0000 (20:12 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Mon, 18 Apr 2022 19:48:03 +0000 (15:48 -0400)
Since this is the latest use of gdb_tilde_expand_up, remove it.

Change-Id: I964c812ce55fe087876abf91e7a3577ad79c0425

gdbsupport/gdb_tilde_expand.cc
gdbsupport/gdb_tilde_expand.h

index e3f9308a14f0837e5a1ee727ab0d3a5da00be4ee..177d296a14fd51c6cfc4f0f6cca16492eae3fe97 100644 (file)
@@ -102,12 +102,3 @@ gdb_tilde_expand (const char *dir)
   gdb_assert (glob.pathc () == 1);
   return std::string (glob.pathv ()[0]) + remainder;
 }
-
-/* See gdbsupport/gdb_tilde_expand.h.  */
-
-gdb::unique_xmalloc_ptr<char>
-gdb_tilde_expand_up (const char *dir)
-{
-  const std::string expanded = gdb_tilde_expand (dir);
-  return make_unique_xstrdup (expanded.c_str ());
-}
index c47cd6a214f7a93f806150e9637d1b7f52c992a8..06b96517697c260dec443447b31a2d6e190319dc 100644 (file)
@@ -23,8 +23,4 @@
 /* Perform tilde expansion on DIR, and return the full path.  */
 extern std::string gdb_tilde_expand (const char *dir);
 
-/* Same as GDB_TILDE_EXPAND, but return the full path as a
-   gdb::unique_xmalloc_ptr<char>.  */
-extern gdb::unique_xmalloc_ptr<char> gdb_tilde_expand_up (const char *dir);
-
 #endif /* COMMON_GDB_TILDE_EXPAND_H */