From: "Weiqi Gao" Newsgroups: comp.os.msdos.djgpp Subject: Re: list of djgpp compiler errors wanted! Date: 20 Nov 1996 01:04:11 GMT Organization: CRL Dialup Internet Access Lines: 35 Message-ID: <01bbd67e$771e04e0$010200c0@weiqigao> References: <32905cab DOT 10273409 AT news DOT uu DOT se> NNTP-Posting-Host: crl13.crl.com To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp The GCC compiler error messages are generally plain and precise. What you have encountered is not an error message, but rather a warning message. GCC did allow you to use the C++ automatic typecasting. Still, if you want to find out about all the error messages, maybe you should look into the source files? InfoMagic (www.infomagic.com) sell Linux CD sets that include the full GNU archive for $25.00, although you should really buy the CD from FSF (wGNUww.fsf.org) for $60.00+donation. -- Weiqi Gao weiqigao AT crl DOT com Martin Gumucio wrote in article <32905cab DOT 10273409 AT news DOT uu DOT se>... > > I'm just learning c++ but djgpp is complaining on my coding... > > this source is copied right out of my book > > int auks; > auks = 19.99 + 11.99; > > > this is the commandline i use > > gxx SAMPLE.CPP -o SAMPLE.EXE -lm > > and this came out of the compiler > utypomv.cpp: In function `int main()': > utypomv.cpp:10: warning: assignment to `int' from `double' > > it simply refuses to make me use type casting of any form. > Where can i find a list of all djgpp compiler errorsmessages? >