Search:

Type: Posts; User: Bonum

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    586

    That did it. Thanks!

    That did it. Thanks!
  2. Replies
    2
    Views
    586

    Erased element from std::set reappears.

    Hello. I am trying to make something like an event or message system. There are Listeners, Messages and a Postman. The Listeners register themselves with the Postman to receive certain types of...
  3. Replies
    10
    Views
    2,951

    Did you use a library for graphics and mouse...

    Did you use a library for graphics and mouse input? If so, it would be helpful to know which.
  4. Ah, virtual! I had completely forgotten about...

    Ah, virtual! I had completely forgotten about that. Thank you all.



    Yes, I suppose I should do that. :)
  5. Wrong member function. Is this the slice problem?

    Hello. I am having a problem with a program. I have a bunch of classes all derived from the same base class. I want to loop through a vector of objects, calling a function in each. The problem is...
  6. Replies
    3
    Views
    828

    In your second while loop, i is already bigger...

    In your second while loop, i is already bigger than n2. So you could switch to:
    while (n2 <= i) {
Results 1 to 6 of 6