Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Flay
  • Order by date
  1. Flay

    Error in VC++ include-file

    Thanks for your great help, cpjust, but i still got the same error, there must something else going on. But thanks anyway for you help!!
  2. Flay

    Error in VC++ include-file

    I tried to find out when my errors appear, I did make a new project, so i have a totally empty main-function (win32 console app). I can do everything i want, but when i put the line "#include <map>" inside my file the error comes up again.
  3. Flay

    Error in VC++ include-file

    All occurances of "map" and "MAP" are: In mkv.h: #include <string> #include <fstream> #include <list> #include <map> #include "../parse/comm.h" #include <mtl/matrix.h> #include <mtl/utils.h> #include <mtl/mtl.h> using namespace std; using namespace mtl; typedef matrix <double, rectangle<>...
  4. Flay

    Error in VC++ include-file

    The only place where i am using that MAP-part is in the code i copied in my previous post. I tried with moving the "using namespace std;" to my .cpp file, but this doesn't change the number of the errors or the errors. When i moved "using namespace mtl;" also to my .cpp file i had many many...
  5. Flay

    Error in VC++ include-file

    i got in a file mkv.cpp a function called calculate, in there i got a variable TV from the type MAP (MAP is defined as: typedef map <unsigned int, list<Vec*>* > MAP; ) To let the program know that "map <unsigned int, list<Vec*>* >" exists i have the following include #include <map>. This...
  6. Flay

    Error in VC++ include-file

    i did just install service pack 5 for Visual C++ 6.0, but i still got the same error-message.
  7. Flay

    Error in VC++ include-file

    I'm using Visual C++ 6.0 because i'm using the MTL-library in my project. There is not yet a working version of MTL available for newer versions of Visual C++.
  8. Flay

    Error in VC++ include-file

    I'm trying to build a parser-program, but when i compile my programm it gives me this error: c:\program files\microsoft visual studio\vc98\include\map(27) : error C2143: syntax error : missing ';' before 'namespace' The line where the error seems to be contains the following code: _STD_BEGIN...

Part and Inventory Search

Back
Top