From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28405 invoked by alias); 5 Aug 2002 12:06:03 -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 28391 invoked by uid 71); 5 Aug 2002 12:06:02 -0000 Date: Mon, 05 Aug 2002 05:06:00 -0000 Message-ID: <20020805120602.28390.qmail@sources.redhat.com> To: nobody@gcc.gnu.org Cc: gcc-prs@gcc.gnu.org, From: Subject: Antwort: Re: c++/7472: gcc 3.1.1 has problems with STL slist Reply-To: X-SW-Source: 2002-08/txt/msg00086.txt.bz2 List-Id: The following reply was made to PR c++/7472; it has been noted by GNATS. From: To: Cc: Subject: Antwort: Re: c++/7472: gcc 3.1.1 has problems with STL slist Date: Mon, 5 Aug 2002 14:01:36 +0200 Hi, thank you for your fast answer. I will apply your solution. Best regards Steffen Synopsis: gcc 3.1.1 has problems with STL slist State-Changed-From-To: open->closed State-Changed-By: pme State-Changed-When: Fri Aug 2 09:09:36 2002 State-Changed-Why: Thank you for your bug report. =20 The slist class is not part of the standard library. It was part of the original HP library and retained by SGI. For GCC, it has been moved out of namespace std, since it is not standard. Also the header file has been moved. =20 This =20 #include =20 using __gnu_cxx::slist; =20 int main() { slist s; } =20 works with 3.1 and later. =