excess semicolons

This commit is contained in:
eap 2011-02-17 13:54:05 +00:00
parent fbd01b197c
commit 18e25f5736
2 changed files with 6 additions and 6 deletions

View File

@ -69,8 +69,8 @@ public:
static std::vector<SMDS_Mesh*> _meshList; static std::vector<SMDS_Mesh*> _meshList;
//! actual nodes coordinates, cells definition and reverse connectivity are stored in a vtkUnstructuredGrid //! actual nodes coordinates, cells definition and reverse connectivity are stored in a vtkUnstructuredGrid
inline SMDS_UnstructuredGrid* getGrid() {return myGrid; }; inline SMDS_UnstructuredGrid* getGrid() {return myGrid; }
inline int getMeshId() {return myMeshId; }; inline int getMeshId() {return myMeshId; }
SMDS_NodeIteratorPtr nodesIterator (bool idInceasingOrder=false) const; SMDS_NodeIteratorPtr nodesIterator (bool idInceasingOrder=false) const;
SMDS_0DElementIteratorPtr elements0dIterator(bool idInceasingOrder=false) const; SMDS_0DElementIteratorPtr elements0dIterator(bool idInceasingOrder=false) const;
@ -587,7 +587,7 @@ public:
static int chunkSize; static int chunkSize;
//! low level modification: add, change or remove node or element //! low level modification: add, change or remove node or element
inline void setMyModified() { this->myModified = true; }; inline void setMyModified() { this->myModified = true; }
void Modified(); void Modified();
unsigned long GetMTime(); unsigned long GetMTime();
@ -628,7 +628,7 @@ protected:
myElementIDFactory->adjustMaxId(ID); myElementIDFactory->adjustMaxId(ID);
if (ID >= myCells.size()) if (ID >= myCells.size())
myCells.resize(ID+SMDS_Mesh::chunkSize,0); myCells.resize(ID+SMDS_Mesh::chunkSize,0);
}; }
inline void adjustBoundingBox(double x, double y, double z) inline void adjustBoundingBox(double x, double y, double z)
{ {
@ -638,7 +638,7 @@ protected:
else if (y < ymin) ymin = y; else if (y < ymin) ymin = y;
if (z > zmax) zmax = z; if (z > zmax) zmax = z;
else if (z < zmin) zmin = z; else if (z < zmin) zmin = z;
}; }
// Fields PRIVATE // Fields PRIVATE

View File

@ -14,7 +14,7 @@ public:
virtual ~SMDS_MeshCell(); virtual ~SMDS_MeshCell();
virtual bool ChangeNodes(const SMDS_MeshNode* nodes[], const int nbNodes)= 0; virtual bool ChangeNodes(const SMDS_MeshNode* nodes[], const int nbNodes)= 0;
virtual bool vtkOrder(const SMDS_MeshNode* nodes[], const int nbNodes) {return true; }; virtual bool vtkOrder(const SMDS_MeshNode* nodes[], const int nbNodes) {return true; }
static int nbCells; static int nbCells;