CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: makeshiftwings

Search: Search took 0.04 seconds.

  1. Replies
    13
    Views
    6,629

    hometown/paul: aargh... i know, i know, about...

    hometown/paul:
    aargh... i know, i know, about the int from main. This isn't actual code from my library, I was just trying to make the snippet small to show where the error is coming from. It's...
  2. Replies
    13
    Views
    6,629

    Nope, using a Win32 Console with just this file:...

    Nope, using a Win32 Console with just this file:



    #include <map>
    #include <vector>

    void main(void)
    {
    std::multimap<size_t, int> somemap;
  3. Replies
    13
    Views
    6,629

    Hi, thanks for the responses everyone. I have...

    Hi, thanks for the responses everyone. I have looked into it a little more, and your are right, alone it does compile ok. The error seemed to be coming, oddly enough, from an unrelated multimap...
  4. Replies
    13
    Views
    6,629

    Odd.... it must be some kind of bug in the...

    Odd.... it must be some kind of bug in the compiler. Using any other type (like an int or char) works fine, but unsigned int throws that warning. For now I've just used a pragma to disable it. I...
  5. Replies
    13
    Views
    6,629

    problem with vector ???

    Hi... I'm far from a master of STL, but I seem to be having some odd behavior with a vector<unsigned int> that I'm using. Basically, if I do this:



    std::vector<unsigned int> vec;
    unsigned int...
Results 1 to 5 of 5





Click Here to Expand Forum to Full Width

Featured