diff options
Diffstat (limited to 'gdb/break-catch-load.c')
-rw-r--r-- | gdb/break-catch-load.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/break-catch-load.c b/gdb/break-catch-load.c index 02a98b5..dbf70d8 100644 --- a/gdb/break-catch-load.c +++ b/gdb/break-catch-load.c @@ -230,7 +230,7 @@ add_solib_catchpoint (const char *arg, bool is_load, bool is_temp, bool enabled) if (*arg == '\0') arg = nullptr; - auto c = gdb::make_unique<solib_catchpoint> (gdbarch, is_temp, nullptr, + auto c = std::make_unique<solib_catchpoint> (gdbarch, is_temp, nullptr, is_load, arg); c->enable_state = enabled ? bp_enabled : bp_disabled; |