@@ -127,7 +127,7 @@ class ENGINE_API CCC_ToggleMask : public IConsole_Command
127127 u32 mask;
128128
129129public:
130- CCC_ToggleMask (LPCSTR N, Flags32* V, u32 M) : IConsole_Command(N), value(V), mask(M) { bEmptyArgsHandled = TRUE ; };
130+ CCC_ToggleMask (LPCSTR N, Flags32* V, u32 M) : IConsole_Command(N), value(V), mask(M) { bEmptyArgsHandled = TRUE ; }
131131 const BOOL GetValue () const { return value->test (mask); }
132132 virtual void Execute (LPCSTR /* args*/ )
133133 {
@@ -153,7 +153,7 @@ class ENGINE_API CCC_Token : public IConsole_Command
153153 const xr_token* tokens;
154154
155155public:
156- CCC_Token (LPCSTR N, u32 * V, const xr_token* T) : IConsole_Command(N), value(V), tokens(T){};
156+ CCC_Token (LPCSTR N, u32 * V, const xr_token* T) : IConsole_Command(N), value(V), tokens(T){}
157157
158158 virtual void Execute (LPCSTR args)
159159 {
@@ -239,8 +239,8 @@ class ENGINE_API CCC_Float : public IConsole_Command
239239
240240public:
241241 CCC_Float (LPCSTR N, float * V, float _min = 0 , float _max = 1 )
242- : IConsole_Command(N), value(V), min(_min), max(_max){};
243- const float GetValue () const { return *value; };
242+ : IConsole_Command(N), value(V), min(_min), max(_max){}
243+ const float GetValue () const { return *value; }
244244 void GetBounds (float & fmin, float & fmax) const
245245 {
246246 fmin = min;
@@ -283,8 +283,8 @@ class ENGINE_API CCC_Vector3 : public IConsole_Command
283283 min.set (_min);
284284 max.set (_max);
285285 };
286- const Fvector GetValue () const { return *value; };
287- Fvector* GetValuePtr () const { return value; };
286+ const Fvector GetValue () const { return *value; }
287+ Fvector* GetValuePtr () const { return value; }
288288 virtual void Execute (LPCSTR args)
289289 {
290290 Fvector v;
@@ -327,14 +327,14 @@ class ENGINE_API CCC_Integer : public IConsole_Command
327327 int min, max;
328328
329329public:
330- const int GetValue () const { return *value; };
330+ const int GetValue () const { return *value; }
331331 void GetBounds (int & imin, int & imax) const
332332 {
333333 imin = min;
334334 imax = max;
335335 }
336336
337- CCC_Integer (LPCSTR N, int * V, int _min = 0 , int _max = 999 ) : IConsole_Command(N), value(V), min(_min), max(_max){};
337+ CCC_Integer (LPCSTR N, int * V, int _min = 0 , int _max = 999 ) : IConsole_Command(N), value(V), min(_min), max(_max){}
338338
339339 virtual void Execute (LPCSTR args)
340340 {
@@ -382,7 +382,7 @@ class ENGINE_API CCC_String : public IConsole_Command
382382class ENGINE_API CCC_LoadCFG : public IConsole_Command
383383{
384384public:
385- virtual bool allow (LPCSTR /* cmd*/ ) { return true ; };
385+ virtual bool allow (LPCSTR /* cmd*/ ) { return true ; }
386386 CCC_LoadCFG (LPCSTR N);
387387 virtual void Execute (LPCSTR args);
388388};
0 commit comments