From f8f3752147e0722f805fd1063a4b22e69f9740ce Mon Sep 17 00:00:00 2001 From: jason Date: Mon, 14 Dec 2015 20:54:17 +0000 Subject: PR c++/68309 gcc/ * hash-table.h: Add copy constructor. * hash-map.h: Add copy constructor. gcc/cp/ * pt.c (instantiate_decl): Copy local_specializations for nested function. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@231632 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/hash-map.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gcc/hash-map.h') diff --git a/gcc/hash-map.h b/gcc/hash-map.h index 81ede08e7c7..510353bf4f7 100644 --- a/gcc/hash-map.h +++ b/gcc/hash-map.h @@ -111,6 +111,11 @@ public: CXX_MEM_STAT_INFO) : m_table (n, ggc, gather_mem_stats, HASH_MAP_ORIGIN PASS_MEM_STAT) {} + hash_map (const hash_map &h, bool ggc = false, + bool gather_mem_stats = GATHER_STATISTICS CXX_MEM_STAT_INFO) + : m_table (h.m_table, ggc, gather_mem_stats, + HASH_MAP_ORIGIN PASS_MEM_STAT) {} + /* Create a hash_map in ggc memory. */ static hash_map *create_ggc (size_t size, bool gather_mem_stats = GATHER_STATISTICS -- cgit v1.2.1