ui_out_table: Replace boolean flag with enum
[deliverable/binutils-gdb.git] / gdb / printcmd.c
index 23de57cb2137b3ea87d0da603259b6be4e68064a..f434f5f70ab4810c0cf2eac7b86ca73bdca92470 100644 (file)
@@ -322,7 +322,6 @@ print_formatted (struct value *val, int size,
     /* User specified format, so don't look to the type to tell us
        what to do.  */
     val_print_scalar_formatted (type,
-                               value_contents_for_printing (val),
                                value_embedded_offset (val),
                                val,
                                options, size, stream);
@@ -1780,7 +1779,7 @@ display_command (char *arg, int from_tty)
   newobj = new display ();
 
   newobj->exp_string = xstrdup (exp);
-  newobj->exp = gdb::move (expr);
+  newobj->exp = std::move (expr);
   newobj->block = innermost_block;
   newobj->pspace = current_program_space;
   newobj->number = ++display_number;
This page took 0.024905 seconds and 4 git commands to generate.