Use new/delete instead of malloc/free-based functions
[deliverable/binutils-gdb.git] / gdb / parse.c
index afafc35cfb8f8e958ba000a863480c999d792c7a..323de7710ed4616d10f3c7297a80baa1063e1391 100644 (file)
@@ -1309,7 +1309,7 @@ parse_expression_for_completion (const char *string, char **name,
   TRY
     {
       parse_completion = 1;
-      exp = std::move (parse_exp_in_context (&string, 0, 0, 0, 0, &subexp));
+      exp = parse_exp_in_context (&string, 0, 0, 0, 0, &subexp);
     }
   CATCH (except, RETURN_MASK_ERROR)
     {
This page took 0.023193 seconds and 4 git commands to generate.