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

Search:

Type: Posts; User: ThinkTwice

Search: Search took 0.01 seconds.

  1. Replies
    4
    Views
    1,334

    Re: Popping from STL Containers

    Thank you all for the help! I found the issue where I was accidentally still pushing another copy of the previous item onto the list in one case of a break statement.
  2. Replies
    4
    Views
    1,334

    Popping from STL Containers

    I've been working on a project that involves storing pointers to dynamically allocated class objects in an STL list, but trying to run it something's going wrong.

    list<Actor*>::iterator it;
    ...
Results 1 to 2 of 2





Click Here to Expand Forum to Full Width

Featured