mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 03:04:33 +02:00
useless semicolon removal
This commit is contained in:
parent
f5b9fabdb9
commit
25e8c7d3f1
9 changed files with 9 additions and 9 deletions
|
@ -20,7 +20,7 @@ class EntityNodeData : public OctreeQueryNode {
|
|||
public:
|
||||
EntityNodeData() :
|
||||
OctreeQueryNode(),
|
||||
_lastDeletedEntitiesSentAt(0) { };
|
||||
_lastDeletedEntitiesSentAt(0) { }
|
||||
|
||||
virtual PacketType getMyPacketType() const { return PacketTypeEntityData; }
|
||||
|
||||
|
|
|
@ -85,7 +85,7 @@ public:
|
|||
return (getCurrentPacketIsColor() == getWantColor() && getCurrentPacketIsCompressed() == getWantCompression());
|
||||
}
|
||||
|
||||
bool hasLodChanged() const { return _lodChanged; };
|
||||
bool hasLodChanged() const { return _lodChanged; }
|
||||
|
||||
OctreeSceneStats stats;
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ public:
|
|||
virtual PacketType getMyEditNackType() const = 0;
|
||||
|
||||
// subclass may implement these method
|
||||
virtual void beforeRun() { };
|
||||
virtual void beforeRun() { }
|
||||
virtual bool hasSpecialPacketToSend(const SharedNodePointer& node) { return false; }
|
||||
virtual int sendSpecialPacket(const SharedNodePointer& node, OctreeQueryNode* queryNode, int& packetsSent) { return 0; }
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ class ParticleNodeData : public OctreeQueryNode {
|
|||
public:
|
||||
ParticleNodeData() :
|
||||
OctreeQueryNode(),
|
||||
_lastDeletedParticlesSentAt(0) { };
|
||||
_lastDeletedParticlesSentAt(0) { }
|
||||
|
||||
virtual PacketType getMyPacketType() const { return PacketTypeParticleData; }
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
|
||||
class VoxelNodeData : public OctreeQueryNode {
|
||||
public:
|
||||
VoxelNodeData() : OctreeQueryNode() { };
|
||||
VoxelNodeData() : OctreeQueryNode() { }
|
||||
virtual PacketType getMyPacketType() const { return PacketTypeVoxelData; }
|
||||
};
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public:
|
|||
|
||||
RenderableBoxEntityItem(const EntityItemID& entityItemID, const EntityItemProperties& properties) :
|
||||
BoxEntityItem(entityItemID, properties)
|
||||
{ };
|
||||
{ }
|
||||
|
||||
virtual void render(RenderArgs* args);
|
||||
};
|
||||
|
|
|
@ -34,7 +34,7 @@ RenderableModelEntityItem::~RenderableModelEntityItem() {
|
|||
_myRenderer->releaseModel(_model);
|
||||
_model = NULL;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
bool RenderableModelEntityItem::setProperties(const EntityItemProperties& properties, bool forceCopy) {
|
||||
QString oldModelURL = getModelURL();
|
||||
|
|
|
@ -37,7 +37,7 @@ public:
|
|||
_model(NULL),
|
||||
_needsInitialSimulation(true),
|
||||
_needsModelReload(true),
|
||||
_myRenderer(NULL) { };
|
||||
_myRenderer(NULL) { }
|
||||
|
||||
virtual ~RenderableModelEntityItem();
|
||||
|
||||
|
|
|
@ -31,7 +31,7 @@ public:
|
|||
|
||||
RenderableSphereEntityItem(const EntityItemID& entityItemID, const EntityItemProperties& properties) :
|
||||
SphereEntityItem(entityItemID, properties)
|
||||
{ };
|
||||
{ }
|
||||
|
||||
virtual void render(RenderArgs* args);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue