Add a missing munmap_list move constructor
authorSaagar Jha <saagar@saagarjha.com>
Fri, 25 Sep 2020 07:05:24 +0000 (00:05 -0700)
committerSimon Marchi <simon.marchi@efficios.com>
Fri, 25 Sep 2020 14:57:06 +0000 (10:57 -0400)
compile_module attempts to request a move constructor, but because
munmap_list doesn't have one it gets implicitly deleted. This is an
warning on clang under -Wdefaulted-function-deleted (which is enabled by
default):

In file included from compile/compile-object-load.c:21:
compile/compile-object-load.h:56:3: error: explicitly defaulted move constructor is implicitly deleted [-Werror,-Wdefaulted-function-deleted]
  compile_module (compile_module &&other) = default;
  ^
compile/compile-object-load.h:86:22: note: move constructor of 'compile_module' is implicitly deleted because field 'munmap_list' has a deleted move constructor
  struct munmap_list munmap_list;
                     ^
compile/compile-object-load.h:30:28: note: 'munmap_list' has been explicitly marked deleted here
  DISABLE_COPY_AND_ASSIGN (munmap_list);
                           ^

gdb/ChangeLog:

* compile/compile-object-load.h: Give munmap_list a move
constructor.

Change-Id: I300c52e27da70087f18c7e359773c2b984073d8b

gdb/ChangeLog
gdb/compile/compile-object-load.h

index 649131da999c249662d1fef2af4462983d27984b..57e46c48607433a798726570dd134579c75540b0 100644 (file)
@@ -1,3 +1,8 @@
+2020-09-25  Saagar Jha  <saagar@saagarjha.com>
+
+       * compile/compile-object-load.h (struct munmap_list): Add
+       explicitly-defined move constructor.
+
 2020-09-24  Tom Tromey  <tromey@adacore.com>
 
        PR tui/26638:
index 0254390109e92cb7ce552b6e70629f764961bd7e..166d442ad02d04237dac3c5c643ec0297c530de9 100644 (file)
@@ -30,6 +30,7 @@ public:
   DISABLE_COPY_AND_ASSIGN (munmap_list);
 
   munmap_list &operator= (munmap_list &&) = default;
+  munmap_list (munmap_list &&) = default;
 
   /* Add a region to the list.  */
   void add (CORE_ADDR addr, CORE_ADDR size);