timmay3141
Programmer
I'm getting a stupid warning from MSVC++ 6.0. I don't even know what this means:
c:\program files\microsoft visual studio\vc98\include\vector(39) : warning C4786: 'std::reverse_iterator<std::vector<CUSTOMVERTEX,std::allocator<CUSTOMVERTEX> > const *,std::vector<CUSTOMVERTEX,std::allocator<CUSTOMVERTEX> >,std::vector<CUSTOMVERTEX
,std::allocator<CUSTOMVERTEX> > const &,std::vector<CUSTOMVERTEX,std::allocator<CUSTOMVERTEX> > const *,int>' : identifier was truncated to '255' characters in the debug information
c:\program files\microsoft visual studio\vc98\include\vector(39) : while compiling class-template member function '__thiscall std::vector<std::vector<CUSTOMVERTEX,std::allocator<CUSTOMVERTEX> >,std::allocator<std::vector<CUSTOMVERTEX,std::al
locator<CUSTOMVERTEX> > > >::std::vector<std::vector<CUSTOMVERTEX,std::allocator<CUSTOMVERTEX> >,std::allocator<std::vector<CUSTOMVERTEX,std::allocator<CUSTOMVERTEX> > > >(const std::allocator<std::vector<CUSTOMVERTEX,std::allocator<CUSTOMVERTEX> >
> &)'
I guess it's referring to my vector of vectors (it's for a 2D array). The warning doesn't seem to be important or even make any sense, but apparently Microsoft thinks it knows more than me and when I tell it to ignore this warning by adding the line #pragma warning(disable:4786) it gives me the warning anyway. What can I do to fix this?
c:\program files\microsoft visual studio\vc98\include\vector(39) : warning C4786: 'std::reverse_iterator<std::vector<CUSTOMVERTEX,std::allocator<CUSTOMVERTEX> > const *,std::vector<CUSTOMVERTEX,std::allocator<CUSTOMVERTEX> >,std::vector<CUSTOMVERTEX
,std::allocator<CUSTOMVERTEX> > const &,std::vector<CUSTOMVERTEX,std::allocator<CUSTOMVERTEX> > const *,int>' : identifier was truncated to '255' characters in the debug information
c:\program files\microsoft visual studio\vc98\include\vector(39) : while compiling class-template member function '__thiscall std::vector<std::vector<CUSTOMVERTEX,std::allocator<CUSTOMVERTEX> >,std::allocator<std::vector<CUSTOMVERTEX,std::al
locator<CUSTOMVERTEX> > > >::std::vector<std::vector<CUSTOMVERTEX,std::allocator<CUSTOMVERTEX> >,std::allocator<std::vector<CUSTOMVERTEX,std::allocator<CUSTOMVERTEX> > > >(const std::allocator<std::vector<CUSTOMVERTEX,std::allocator<CUSTOMVERTEX> >
> &)'
I guess it's referring to my vector of vectors (it's for a 2D array). The warning doesn't seem to be important or even make any sense, but apparently Microsoft thinks it knows more than me and when I tell it to ignore this warning by adding the line #pragma warning(disable:4786) it gives me the warning anyway. What can I do to fix this?