From 3404c48b0ae0cd09025a54c20df86b8cc3567f70 Mon Sep 17 00:00:00 2001 From: jason Date: Tue, 15 Dec 2015 16:21:50 +0000 Subject: * hash-map.h, hash-table.h: Make copy constructors explicit. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@231658 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/hash-table.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gcc/hash-table.h') diff --git a/gcc/hash-table.h b/gcc/hash-table.h index 53e72e66f33..5725372dde2 100644 --- a/gcc/hash-table.h +++ b/gcc/hash-table.h @@ -365,10 +365,10 @@ public: bool gather_mem_stats = GATHER_STATISTICS, mem_alloc_origin origin = HASH_TABLE_ORIGIN CXX_MEM_STAT_INFO); - hash_table (const hash_table &, bool ggc = false, - bool gather_mem_stats = GATHER_STATISTICS, - mem_alloc_origin origin = HASH_TABLE_ORIGIN - CXX_MEM_STAT_INFO); + explicit hash_table (const hash_table &, bool ggc = false, + bool gather_mem_stats = GATHER_STATISTICS, + mem_alloc_origin origin = HASH_TABLE_ORIGIN + CXX_MEM_STAT_INFO); ~hash_table (); /* Create a hash_table in gc memory. */ -- cgit v1.2.1