1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-11 17:51:04 +00:00

Revert "m_active_object_messages is used like a queue. Use std::queue instead of std::list. Also rename to m_active_object_messages_queue"

This reverts commit 972d17baea.
The commit being reverted was unauthorized.  There had been no discussion,
review, or sign-off prior to submittal to upstream.
This commit is contained in:
kwolekr 2015-04-21 18:12:01 -04:00
parent 972d17baea
commit e0eec201a1
2 changed files with 5 additions and 6 deletions

View file

@ -33,7 +33,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include <set>
#include <list>
#include <map>
#include <queue>
#include "irr_v3d.h"
#include "activeobject.h"
#include "util/numeric.h"
@ -379,7 +378,7 @@ private:
// Active object list
std::map<u16, ServerActiveObject*> m_active_objects;
// Outgoing network message buffer for active objects
std::queue<ActiveObjectMessage> m_active_object_messages_queue;
std::list<ActiveObjectMessage> m_active_object_messages;
// Some timers
float m_send_recommended_timer;
IntervalLimiter m_object_management_interval;