@@ -62,8 +62,8 @@ struct SPos
6262 POSType x;
6363 POSType y;
6464 POSType z;
65- SPos () : faceIdx(0 ), x(0 ), y(0 ), z(0 ) {};
66- SPos (int32_t f, POSType xIn, POSType yIn, POSType zIn ) : faceIdx(f), x(xIn), y(yIn), z(zIn) {};
65+ SPos () : faceIdx(0 ), x(0 ), y(0 ), z(0 ) {}
66+ SPos (int32_t f, POSType xIn, POSType yIn, POSType zIn ) : faceIdx(f), x(xIn), y(yIn), z(zIn) {}
6767};
6868
6969struct GeometryRotation
@@ -76,7 +76,7 @@ struct ViewPortSettings
7676 float vFOV;
7777 float fYaw ; //
7878 float fPitch ;
79- ViewPortSettings () : hFOV(0 ), vFOV(0 ), fYaw (0 ), fPitch (0 ) {};
79+ ViewPortSettings () : hFOV(0 ), vFOV(0 ), fYaw (0 ), fPitch (0 ) {}
8080};
8181
8282struct SVideoInfo
@@ -101,7 +101,7 @@ class Geometry
101101 bool m_bPadded;
102102 bool m_bGeometryMapping;
103103 bool m_bConvOutputPaddingNeeded;
104- inline int32_t round (POSType t) { return (int32_t )(t+ (t>=0 ? 0.5 :-0.5 )); };
104+ inline int32_t round (POSType t) { return (int32_t )(t+ (t>=0 ? 0.5 :-0.5 )); }
105105 void rotate3D (SPos& sPos , int32_t rx, int32_t ry, int32_t rz);
106106public:
107107 int32_t m_numFaces;
@@ -111,7 +111,7 @@ class Geometry
111111 virtual ~Geometry ();
112112 void geoInit (SVideoInfo& sVideoInfo );
113113 void geoUnInit (); // just use in the viewport
114- GeometryType getType () { return (GeometryType)m_sVideoInfo.geoType ; };
114+ GeometryType getType () { return (GeometryType)m_sVideoInfo.geoType ; }
115115 void setPaddingFlag (bool bFlag) { m_bPadded = bFlag; }
116116 virtual void map2DTo3D (SPos& IPosIn, SPos *pSPosOut) = 0;
117117 virtual void map3DTo2D (SPos *pSPosIn, SPos *pSPosOut) = 0;
0 commit comments