aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-08-23 23:19:43 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-08-23 23:22:36 +0100
commit2dbcbe3575134b3c6267b1a396b57080067ed9da (patch)
tree171b17dcbbf742fd6bc8119f1243ec3003441b2a /include
parentb4d99eb15e6337c22c011acaca25b0ce8e946e3d (diff)
downloadYAGE-2dbcbe3575134b3c6267b1a396b57080067ed9da.tar.gz
YAGE-2dbcbe3575134b3c6267b1a396b57080067ed9da.zip
Fixed autofix issues.
Diffstat (limited to 'include')
-rw-r--r--include/YAGE/Math/matrix.hpp2
-rw-r--r--include/YAGE/Physics/particlebody.hpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/YAGE/Math/matrix.hpp b/include/YAGE/Math/matrix.hpp
index 866b46e2..e4583290 100644
--- a/include/YAGE/Math/matrix.hpp
+++ b/include/YAGE/Math/matrix.hpp
@@ -275,7 +275,7 @@ public:
const Type& operator[](int col) const { return this->data_[col]; }
- std::string toString() const override override override {
+ std::string toString() const override {
std::stringstream ss;
ss << "[";
for (std::size_t i = 0; i < this->data_.size() - 1; ++i) {
diff --git a/include/YAGE/Physics/particlebody.hpp b/include/YAGE/Physics/particlebody.hpp
index 7894e301..fd07512f 100644
--- a/include/YAGE/Physics/particlebody.hpp
+++ b/include/YAGE/Physics/particlebody.hpp
@@ -22,8 +22,8 @@ public:
bool gravity = true);
// apply a force to the rigid body
- void applyForce(const Vector2d& force) override override;
- void update() override override;
+ void applyForce(const Vector2d& force) override;
+ void update() override;
};
} // yage