File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ namespace libdwarf {
107
107
std::vector<target_object> target_objects;
108
108
std::vector<debug_map_symbol_info> symbols;
109
109
public:
110
- debug_map_resolver (cstring_view source_object_path) {
110
+ debug_map_resolver (const std::string& source_object_path) {
111
111
// load mach-o
112
112
// TODO: Cache somehow?
113
113
auto mach_o_object = open_mach_o_cached (source_object_path);
@@ -197,7 +197,7 @@ namespace libdwarf {
197
197
};
198
198
};
199
199
200
- std::unique_ptr<symbol_resolver> make_debug_map_resolver (cstring_view object_path) {
200
+ std::unique_ptr<symbol_resolver> make_debug_map_resolver (const std::string& object_path) {
201
201
return detail::make_unique<debug_map_resolver>(object_path);
202
202
}
203
203
#endif
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ namespace libdwarf {
48
48
49
49
std::unique_ptr<symbol_resolver> make_dwarf_resolver (cstring_view object_path);
50
50
#if IS_APPLE
51
- std::unique_ptr<symbol_resolver> make_debug_map_resolver (cstring_view object_path);
51
+ std::unique_ptr<symbol_resolver> make_debug_map_resolver (const std::string& object_path);
52
52
#endif
53
53
}
54
54
}
You can’t perform that action at this time.
0 commit comments