mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 11:45:36 +02:00
remove public virtual from PacketSender and RecievedPacketProcessor
This commit is contained in:
parent
6e9e21051d
commit
39f7111b2d
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ public:
|
|||
|
||||
|
||||
/// Generalized threaded processor for queueing and sending of outbound packets.
|
||||
class PacketSender : public virtual GenericThread {
|
||||
class PacketSender : public GenericThread {
|
||||
public:
|
||||
|
||||
static const uint64_t USECS_PER_SECOND;
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
#include "NetworkPacket.h"
|
||||
|
||||
/// Generalized threaded processor for handling received inbound packets.
|
||||
class ReceivedPacketProcessor : public virtual GenericThread {
|
||||
class ReceivedPacketProcessor : public GenericThread {
|
||||
public:
|
||||
ReceivedPacketProcessor();
|
||||
|
||||
|
|
Loading…
Reference in a new issue