home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 16407 < prev    next >
Encoding:
Text File  |  1996-08-05  |  947 b   |  39 lines

  1. Path: newsbf02.news.aol.com!not-for-mail
  2. From: haris1@aol.com (HariS1)
  3. Newsgroups: comp.lang.c++
  4. Subject: HELP ! => Problem compiling STL classes in Visual C++ 4.1.
  5. Date: 10 Apr 1996 15:10:21 -0400
  6. Organization: America Online, Inc. (1-800-827-6364)
  7. Sender: root@newsbf02.news.aol.com
  8. Message-ID: <4kh12t$rs0@newsbf02.news.aol.com>
  9. Reply-To: haris1@aol.com (HariS1)
  10. NNTP-Posting-Host: newsbf02.mail.aol.com
  11.  
  12. I have problem compiling the following STL program
  13.  
  14. namespace std
  15. {
  16. #include <Vector.h>
  17. #include <Algo.h>
  18. }
  19.  
  20.  
  21. main ()
  22. {
  23.     std::vector <int> v;
  24.  
  25.     v[0] = 1; v [1]=2; v[2]=3;
  26. }
  27.  
  28. I am getting an error.
  29. "c:\msdev\stl\defalloc.h(124) : error C2660: 'new' : 
  30.                         function does not take 2 parameters"
  31.  
  32. I am using Visual C++ 4.1 under Window NT. I would appreciate if
  33. anybody could tell me how to resolve this problem. Apparently it looks
  34. like there is no overloaded 'new' operator defined in this STL files.
  35.  
  36.  
  37. Thanks
  38. Hari
  39.