X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f Date: Sun, 7 Sep 2003 19:25:15 -0400 Message-Id: <200309072325.h87NPFVf004875@envy.delorie.com> From: DJ Delorie To: djgpp AT delorie DOT com In-reply-to: (fausto_barbuto AT hotmail DOT com) Subject: Re: IOSTREAM is deprecated. What now? References: Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > What header(s) should I use instead of IOSTREAM.H to avoid gpp > compilation warnings? (I know I can always use the -Wno-deprecated > switch, but that is silly IMO). #include using namespace std; int main(void) { cout << "hello" << endl; return 0; }