diff options
author | Tom Tromey <tom@tromey.com> | 2025-02-27 21:34:47 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2025-03-03 18:35:41 -0700 |
commit | e578bccf57381f89a65a9cf733574e7f122e28aa (patch) | |
tree | eb18ae4dbb0f02aeec2523f0b84c20ad709cd578 | |
parent | cc85ec00606aff900da3e94358d3140f37372f43 (diff) | |
download | binutils-e578bccf57381f89a65a9cf733574e7f122e28aa.zip binutils-e578bccf57381f89a65a9cf733574e7f122e28aa.tar.gz binutils-e578bccf57381f89a65a9cf733574e7f122e28aa.tar.bz2 |
Obvious comment fix in cooked-index.h
I noticed that cooked-index.h still refers to a vector of parent maps,
but the code itself actually uses a parent_map here.
-rw-r--r-- | gdb/dwarf2/cooked-index.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/dwarf2/cooked-index.h b/gdb/dwarf2/cooked-index.h index b85c703..94c13b6 100644 --- a/gdb/dwarf2/cooked-index.h +++ b/gdb/dwarf2/cooked-index.h @@ -520,7 +520,7 @@ protected: /* Each thread returns a tuple holding a cooked index, any collected complaints, a vector of errors that should be printed, and a - vector of parent maps. + parent map. The errors are retained because GDB's I/O system is not thread-safe. run_on_main_thread could be used, but that would |