Browse Source

Removed superfluous semicolons.

pull/279/head
Vladimír Vondruš 14 years ago
parent
commit
0db46034d7
  1. 2
      src/Mesh.h
  2. 6
      src/Trade/MeshData.h

2
src/Mesh.h

@ -210,7 +210,7 @@ class MAGNUM_EXPORT Mesh {
inline void setVertexCount(GLsizei vertexCount) { inline void setVertexCount(GLsizei vertexCount) {
_vertexCount = vertexCount; _vertexCount = vertexCount;
finalized = false; finalized = false;
}; }
/** /**
* @brief Add buffer * @brief Add buffer

6
src/Trade/MeshData.h

@ -63,7 +63,7 @@ class MAGNUM_EXPORT MeshData {
inline const std::vector<unsigned int>* indices() const { return _indices; } /**< @overload */ inline const std::vector<unsigned int>* indices() const { return _indices; } /**< @overload */
/** @brief Count of vertex arrays */ /** @brief Count of vertex arrays */
inline size_t vertexArrayCount() const { return _vertices.size(); }; inline size_t vertexArrayCount() const { return _vertices.size(); }
/** /**
* @brief Vertices * @brief Vertices
@ -75,7 +75,7 @@ class MAGNUM_EXPORT MeshData {
inline const std::vector<Vector4>* vertices(size_t id) const { return _vertices[id]; } /**< @overload */ inline const std::vector<Vector4>* vertices(size_t id) const { return _vertices[id]; } /**< @overload */
/** @brief Count of normal arrays */ /** @brief Count of normal arrays */
inline size_t normalArrayCount() const { return _normals.size(); }; inline size_t normalArrayCount() const { return _normals.size(); }
/** /**
* @brief Normals * @brief Normals
@ -87,7 +87,7 @@ class MAGNUM_EXPORT MeshData {
inline const std::vector<Vector3>* normals(size_t id) const { return _normals[id]; } /**< @overload */ inline const std::vector<Vector3>* normals(size_t id) const { return _normals[id]; } /**< @overload */
/** @brief Count of 2D texture coordinate arrays */ /** @brief Count of 2D texture coordinate arrays */
inline size_t textureCoords2DArrayCount() const { return _textureCoords2D.size(); }; inline size_t textureCoords2DArrayCount() const { return _textureCoords2D.size(); }
/** /**
* @brief 2D texture coordinates * @brief 2D texture coordinates

Loading…
Cancel
Save