From 2dbcbe3575134b3c6267b1a396b57080067ed9da Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Wed, 23 Aug 2017 23:19:43 +0100 Subject: Fixed autofix issues. --- include/YAGE/Math/matrix.hpp | 2 +- include/YAGE/Physics/particlebody.hpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'include') 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 -- cgit