From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7438 invoked by alias); 11 Oct 2002 20:16:04 -0000 Mailing-List: contact gcc-prs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-prs-owner@gcc.gnu.org Received: (qmail 7418 invoked by uid 71); 11 Oct 2002 20:16:03 -0000 Date: Fri, 11 Oct 2002 13:16:00 -0000 Message-ID: <20021011201603.7416.qmail@sources.redhat.com> To: paolo@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: Gabriel Dos Reis Subject: Re: libstdc++/8034: hash_map missing from namespace std Reply-To: Gabriel Dos Reis X-SW-Source: 2002-10/txt/msg00481.txt.bz2 List-Id: The following reply was made to PR libstdc++/8034; it has been noted by GNATS. From: Gabriel Dos Reis To: ethaky@eth.ericsson.se Cc: gcc-gnats@gcc.gnu.org Subject: Re: libstdc++/8034: hash_map missing from namespace std Date: 11 Oct 2002 22:10:29 +0200 ethaky@eth.ericsson.se writes: | hash_map (from ) used to be in the std namespace, but | it is in __gnu_cxx now. Only its insert_iterator is in std. Is this | deliberate or is something missing? hash_map<> being moved to __gnu_cxx:: is a deliberate decision. The specialization of insert_iterator<> for __gnu_cxx::hash_map<> being defined in std:: is deliberate because that is where the primary template insert_iterator<> is defined. -- Gaby