diff options
author | John Baldwin <jhb@FreeBSD.org> | 2023-10-09 09:59:12 -0700 |
---|---|---|
committer | John Baldwin <jhb@FreeBSD.org> | 2023-10-09 09:59:12 -0700 |
commit | a8ff7b9f87dd72a95f38632627aa3c4fafdf4658 (patch) | |
tree | 8acb8c3123f4232ef33e089723ab679d02dbeb75 /gdbsupport | |
parent | 1b334e27f8410c7fbe3417023258eb9e03ec9592 (diff) | |
download | gdb-a8ff7b9f87dd72a95f38632627aa3c4fafdf4658.zip gdb-a8ff7b9f87dd72a95f38632627aa3c4fafdf4658.tar.gz gdb-a8ff7b9f87dd72a95f38632627aa3c4fafdf4658.tar.bz2 |
gdb_unique_ptr.h: Fix a typo in a comment
Diffstat (limited to 'gdbsupport')
-rw-r--r-- | gdbsupport/gdb_unique_ptr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdbsupport/gdb_unique_ptr.h b/gdbsupport/gdb_unique_ptr.h index 8ff7cec..2b6c0ce 100644 --- a/gdbsupport/gdb_unique_ptr.h +++ b/gdbsupport/gdb_unique_ptr.h @@ -88,7 +88,7 @@ make_unique_xstrndup (const char *str, size_t n) return gdb::unique_xmalloc_ptr<char> (xstrndup (str, n)); } -/* An overload of operator+= fo adding gdb::unique_xmalloc_ptr<char> to a +/* An overload of operator+= for adding gdb::unique_xmalloc_ptr<char> to a std::string. */ static inline std::string & |