From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7659 invoked by alias); 15 Oct 2002 09:53:32 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 7652 invoked from network); 15 Oct 2002 09:53:28 -0000 Received: from unknown (HELO soliton.integrable-solutions.net) (193.51.208.222) by sources.redhat.com with SMTP; 15 Oct 2002 09:53:28 -0000 Received: (from gdr@localhost) by soliton.integrable-solutions.net (8.11.6/8.11.6/SuSE Linux 0.5) id g9F9qtr02754; Tue, 15 Oct 2002 11:52:55 +0200 To: Robert Schweikert Cc: gcc Subject: Re: iostream question References: <3DABDBD1.80708@cox.net> From: Gabriel Dos Reis In-Reply-To: Robert Schweikert's message of "Tue, 15 Oct 2002 05:11:45 -0400" Organization: Integrable Solutions Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII Date: Tue, 15 Oct 2002 04:29:00 -0000 Message-ID: X-SW-Source: 2002-10/txt/msg00798.txt.bz2 Robert Schweikert writes: | I am trying to compile a large application with gcc 3.2, (porting from | gcc 2.95.2) and am getting errors like this. | | /home/rjschwei/local/include/c++/3.2/backward/iostream.h:35: using | declaration | `ostream' introduced ambiguous type `ostream' Did your application already declared ostream before #include ? (I suspect that is the case). If so, then, you no option but delete that forward-declaration. -- Gaby