Ignore:
Timestamp:
Jan 23, 2013, 3:46:05 PM (12 years ago)
Author:
gah
Message:

Temporarily removed optimization to remove similar type responses. It's broken. I need to figure out who's using the response.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Rappture 1.2/packages/vizservers/vtkvis/ResponseQueue.cpp

    r3177 r3260  
    4949    /* Examine the list and remove any queued responses of the same type. */
    5050    TRACE("before # of elements is %d\n", _list.size());
     51#ifdef notdef
     52    /* FIXME: I think this is broken.  Someone is using the response after it
     53     * removed here. */
    5154    for (std::list<Response *>::iterator itr = _list.begin();
    5255         itr != _list.end(); ++itr) {
     
    5760        }
    5861    }
     62#endif
    5963    /* Add the new response to the end of the list. */
    6064    _list.push_back(response);
Note: See TracChangeset for help on using the changeset viewer.