diff options
Diffstat (limited to 'gdb/python/py-mi.c')
-rw-r--r-- | gdb/python/py-mi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-mi.c b/gdb/python/py-mi.c index a7b4f4f..aaa225d 100644 --- a/gdb/python/py-mi.c +++ b/gdb/python/py-mi.c @@ -290,7 +290,7 @@ gdbpy_execute_mi_command (PyObject *self, PyObject *args, PyObject *kw) try { scoped_restore save_uiout = make_scoped_restore (¤t_uiout, &uiout); - auto parser = gdb::make_unique<mi_parse> (std::move (mi_command), + auto parser = std::make_unique<mi_parse> (std::move (mi_command), std::move (arg_strings)); mi_execute_command (parser.get ()); } |