diff options
Diffstat (limited to 'gdb/mi/mi-main.c')
-rw-r--r-- | gdb/mi/mi-main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mi/mi-main.c b/gdb/mi/mi-main.c index 31b413e..984a415 100644 --- a/gdb/mi/mi-main.c +++ b/gdb/mi/mi-main.c @@ -1504,7 +1504,7 @@ mi_cmd_data_read_memory (char *command, char **argv, int argc) /* Create a buffer and read it in. */ total_bytes = word_size * nr_rows * nr_cols; - gdb::unique_ptr<gdb_byte[]> mbuf (new gdb_byte[total_bytes]); + std::unique_ptr<gdb_byte[]> mbuf (new gdb_byte[total_bytes]); /* Dispatch memory reads to the topmost target, not the flattened current_target. */ |