mirror of
https://github.com/glest/glest-source.git
synced 2025-10-04 19:31:32 +02:00
- more cppcheck code cleanup
This commit is contained in:
@@ -31,7 +31,9 @@ public:
|
||||
Vec3f axis;
|
||||
float angle;
|
||||
|
||||
AxisAngle(){};
|
||||
AxisAngle() {
|
||||
angle = 0.0f;
|
||||
}
|
||||
AxisAngle(const Vec3f &axis, float angle);
|
||||
};
|
||||
|
||||
@@ -43,7 +45,11 @@ class EulerAngles{
|
||||
public:
|
||||
float x, y, z;
|
||||
|
||||
EulerAngles(){};
|
||||
EulerAngles() {
|
||||
x = 0.0f;
|
||||
y = 0.0f;
|
||||
z = 0.0f;
|
||||
}
|
||||
EulerAngles(float x, float y, float z);
|
||||
};
|
||||
|
||||
|
@@ -26,7 +26,9 @@ private:
|
||||
SoundFactory *soundFactory;
|
||||
|
||||
private:
|
||||
SoundInterface() {}
|
||||
SoundInterface() {
|
||||
soundFactory = 0;
|
||||
}
|
||||
SoundInterface(SoundInterface &);
|
||||
void operator=(SoundInterface &);
|
||||
|
||||
|
Reference in New Issue
Block a user