![]() | |
| |||||||
| Home | Register | Blogs | FAQ | Members List | Calendar | Downloads | Arcade | Mark Forums Read |
| Languages, Compilers and Interpreters C,C++,C#,.NET,Java,PHP,Perl,SQL and more |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 |
| Младенец | What the heal VC++ 6.0 compiler generates 99 warnings on meeting the following declaration map<string, double> table; Thanks. The answer was right. The problem concerns 4786 warning. Thanks again. <IMG SRC="smile.gif" border="0"> [ October 14, 2001: Message edited by: Alexandr ]
__________________ Do not accept anything, besides the perfect. |
| | |
| | #2 |
| Administrator Join Date: Sep 2001 Location: Yerevan, Armenia
Posts: 7,155
Blog Entries: 15 Rep Power: 10 Reputation:
293 | If this warnings are concerning to number 4786 then it is normal, because in debug mode, lines allowed to be only 255 character long, but in most of cases STL expressions are so nasty that causing lines longer than 255 chars and compiler is just trancating those lines so you are no more allowed to debug them. To avoid this warning simply write the following line at the beginnig of your declaration: #pragma warning (disable : 4786) If this is not your case please state warning number. Hope it helps<BR>acid |
| | |
| | #3 |
| Moderator | Thank you Acid for this advise. <BR>I also noticed that when i use theSTL i have huge quantity of warnings. Now i know why.
__________________ --------------- Արատտայի ու Խալդեյի հովանավոր . |
| | |