remove public virtual from PacketSender and RecievedPacketProcessor

This commit is contained in:
Brad Hefta-Gaub 2014-01-22 14:21:03 -08:00
parent 6e9e21051d
commit 39f7111b2d
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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();