diff options
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/compile/compile-object-load.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 649131d..57e46c4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -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: diff --git a/gdb/compile/compile-object-load.h b/gdb/compile/compile-object-load.h index 0254390..166d442 100644 --- a/gdb/compile/compile-object-load.h +++ b/gdb/compile/compile-object-load.h @@ -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); |