[PATCH] D132504: [NFC] [Object] Refactor out library to fetch debug info by build ID.
David Blaikie via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 8 12:48:54 PDT 2022
dblaikie added inline comments.
================
Comment at: llvm/include/llvm/Debuginfod/BuildIDFetcher.h:26
+ DebuginfodFetcher(std::vector<std::string> DebugFileDirectories)
+ : BuildIDFetcher(std::move(DebugFileDirectories)){};
+ virtual ~DebuginfodFetcher() = default;
----------------
================
Comment at: llvm/include/llvm/Object/BuildID.h:41
+ BuildIDFetcher(std::vector<std::string> DebugFileDirectories)
+ : DebugFileDirectories(std::move(DebugFileDirectories)){};
+ virtual ~BuildIDFetcher() = default;
----------------
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D132504/new/
https://reviews.llvm.org/D132504
More information about the llvm-commits
mailing list