Re: gcc not seeing.

2002-11-08 Thread Philip Wyett
On Thu, 2002-11-07 at 23:16, Michael Schwendt wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On Thu, 7 Nov 2002 14:27:15 -0800, Jesse Keating wrote: > > > # #include > > # > > # int main() > > # { > > # std::cout << "Hello World\n"; > > # return 0; > > # } > > # > > # As a su

Re: gcc not seeing.

2002-11-07 Thread Michael Schwendt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, 7 Nov 2002 14:27:15 -0800, Jesse Keating wrote: > # #include > # > # int main() > # { > # std::cout << "Hello World\n"; > # return 0; > # } > # > # As a sub note about the warning when including 'iostream.h' > # languages change and evo

Re: gcc not seeing.

2002-11-07 Thread Thomas Dodd
Mike A. Harris wrote: On Thu, 7 Nov 2002, Thomas Dodd wrote: On Thu, 07 Nov 2002 10:12:38 -0600 Thomas Dodd <[EMAIL PROTECTED]> wrote: # Is that actuall in the standard? Is the default namespace no longer # defined? # # Time to start adding a namespace decleration to all my code.. I think

Re: gcc not seeing.

2002-11-07 Thread Jesse Keating
On 07 Nov 2002 21:03:22 + Philip Wyett <[EMAIL PROTECTED]> wrote: # #include # # int main() # { # std::cout << "Hello World\n"; # return 0; # } # # As a sub note about the warning when including 'iostream.h' # languages change and evolve and thus with the evolution of C++ # things are b

Re: gcc not seeing.

2002-11-07 Thread Philip Wyett
On Thu, 2002-11-07 at 20:30, Mike A. Harris wrote: > On Thu, 7 Nov 2002, Thomas Dodd wrote: > > >>On Thu, 07 Nov 2002 10:12:38 -0600 > >>Thomas Dodd <[EMAIL PROTECTED]> wrote: > >> > >># Is that actuall in the standard? Is the default namespace no longer > >># defined? > >># > >># Time to start a

Re: gcc not seeing.

2002-11-07 Thread Mike A. Harris
On Thu, 7 Nov 2002, Thomas Dodd wrote: >>On Thu, 07 Nov 2002 10:12:38 -0600 >>Thomas Dodd <[EMAIL PROTECTED]> wrote: >> >># Is that actuall in the standard? Is the default namespace no longer >># defined? >># >># Time to start adding a namespace decleration to all my code.. >> >>I think you can g

Re: gcc not seeing.

2002-11-07 Thread Michael Schwendt
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Thu, 07 Nov 2002 10:12:38 -0600, Thomas Dodd wrote: > > > Mario Torre wrote: > > > std::cout << "Hello World\n"; > >// ^^^ > > > > Is that actuall in the standard? Is the default namespace no longer > defined? It is. It is. Not a typo, the

Re: gcc not seeing.

2002-11-07 Thread Thomas Dodd
Jesse Keating wrote: On Thu, 07 Nov 2002 10:12:38 -0600 Thomas Dodd <[EMAIL PROTECTED]> wrote: # Is that actuall in the standard? Is the default namespace no longer # defined? # # Time to start adding a namespace decleration to all my code.. I think you can get away with it if you add this to

Re: gcc not seeing.

2002-11-07 Thread Jesse Keating
On Thu, 07 Nov 2002 10:12:38 -0600 Thomas Dodd <[EMAIL PROTECTED]> wrote: # Is that actuall in the standard? Is the default namespace no longer # defined? # # Time to start adding a namespace decleration to all my code.. I think you can get away with it if you add this to your headers: using na

Re: gcc not seeing.

2002-11-07 Thread Thomas Dodd
Mario Torre wrote: std::cout << "Hello World\n"; // ^^^ Is that actuall in the standard? Is the default namespace no longer defined? Time to start adding a namespace decleration to all my code.. -Thomas

Re: gcc not seeing.

2002-11-07 Thread Jakub Jelinek
On Thu, Nov 07, 2002 at 11:56:23AM +0100, Mario Torre wrote: > Il gio, 2002-11-07 alle 08:06, Darrel ha scritto: > > I have no idea what has changed in gcc 3.2 that is so different I can't compile >anything. > > > > -- > > #include > > > > int main() > > { > > cout << "Hello Wor

Re: gcc not seeing.

2002-11-07 Thread Mario Torre
Il gio, 2002-11-07 alle 08:06, Darrel ha scritto: > I have no idea what has changed in gcc 3.2 that is so different I can't compile >anything. > > -- > #include > > int main() > { > cout << "Hello World\n"; > return 0; > } > -- Hi! I think only some simple t

RE: gcc not seeing.

2002-11-07 Thread Mike A. Harris
On Thu, 7 Nov 2002, Pavel Rozenboim wrote: >Date: Thu, 7 Nov 2002 12:14:27 +0200 >From: Pavel Rozenboim <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Content-Type: text/plain >List-Id: Discussion of Red Hat Linux 8.0 (Psyche) >Subject: RE: gcc not seeing. > >Where se

RE: gcc not seeing.

2002-11-07 Thread Pavel Rozenboim
Where section 17.4.1.2 of C++ standard (or the standard itself) may be found? > -Original Message- > From: Mike A. Harris [mailto:mharris@;redhat.com] > Sent: Thu, November 07, 2002 12:16 PM > To: [EMAIL PROTECTED] > Subject: Re: gcc not seeing. > > > On Wed,

Re: gcc not seeing.

2002-11-07 Thread Mike A. Harris
On Wed, 6 Nov 2002, Darrel wrote: >Date: Wed, 6 Nov 2002 23:06:51 -0800 >From: Darrel <[EMAIL PROTECTED]> >To: [EMAIL PROTECTED] >Content-Type: text/plain; charset=US-ASCII >List-Id: Discussion of Red Hat Linux 8.0 (Psyche) >Subject: gcc not seeing. > >I have no id

Re: gcc not seeing.

2002-11-07 Thread David
On Wed, 6 Nov 2002, Darrel wrote: > > I have no idea what has changed in gcc 3.2 that is so different I can't > compile anything. Standards conformance. > -- > #include > > int main() > { > cout << "Hello World\n"; change this to: std::cout << "Hello World\n"; >

Re: gcc not seeing.

2002-11-07 Thread Miloslav Trmac
On Wed, Nov 06, 2002 at 11:06:51PM -0800, Darrel wrote: > I have no idea what has changed in gcc 3.2 that is so different I can't compile >anything. > > -- > #include > > int main() > { > cout << "Hello World\n"; > return 0; > } > -- > [Irv@snail cplusplus]$

Re: gcc not seeing.

2002-11-07 Thread Jesse Keating
On Wed, 6 Nov 2002 23:06:51 -0800 Darrel <[EMAIL PROTECTED]> wrote: # # I tried iostream and iostream.h. 'g++ ' seems to work after # dumping a bunch of errors but then I can only get a.out filename. # whats wrong with gcc blah.c -o blah.binary? Make sure you have the libstdc++-devel package

gcc not seeing.

2002-11-07 Thread Darrel
I have no idea what has changed in gcc 3.2 that is so different I can't compile anything. -- #include int main() { cout << "Hello World\n"; return 0; } -- [Irv@snail cplusplus]$ gcc helloworld.c -o helloworld helloworld.c:1:22: iostream.h: No such file or