X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-bounces using -f Message-ID: <000a01c17a67$747c2e00$cb40ec3e@b9d1o0> From: "Terho Suomalainen" To: Subject: Date: Sat, 1 Dec 2001 14:55:11 +0200 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C17A78.369CE280" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4133.2400 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Reply-To: djgpp AT delorie DOT com This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C17A78.369CE280 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, I have a problem about GCC and RHIDE. I have installed them correctly = and programmed a bit. Then as I updated the GCC, it started to give all = this hoax about "undefined or invalid # directive", in code: #include #include #include #include #include void main() { int x =3D 255; vector V; for (int i =3D srandom(x); i < 255;i++) { //V[i] =3D i; ignore my mistake copy (V.begin(), V.end() , ostream_iterator (cout, "") ); } } What is this problem about? It worked well before I even updated it. ------=_NextPart_000_0007_01C17A78.369CE280 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi,
 
I have a problem about GCC and RHIDE. I = have=20 installed them correctly and programmed a bit. Then as I updated the = GCC, it=20 started to give all this hoax about "undefined or invalid # directive", = in=20 code:

#include <vector>

#include <iterator>

#include <iostream.h>

#include <stdlib.h>

#include <algorithm>

void main()

{

int x =3D 255;

vector<char> V;

for (int i =3D srandom(x); i < 255;i++)

{

//V[i] =3D i; ignore my mistake

copy (V.begin(), V.end() , ostream_iterator<char> (cout, "") = );

}

}

What is this problem about? It worked = well before I=20 even updated it.

------=_NextPart_000_0007_01C17A78.369CE280--