From 23e2bc73bc653cfc2f349528079a59575f955386 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Tue, 2 Jun 2020 14:14:24 +0200 Subject: [PATCH] Style fixes. --- src/Battling/Models/ExecutingAttack.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Battling/Models/ExecutingAttack.hpp b/src/Battling/Models/ExecutingAttack.hpp index 1366464..91f9370 100644 --- a/src/Battling/Models/ExecutingAttack.hpp +++ b/src/Battling/Models/ExecutingAttack.hpp @@ -59,9 +59,7 @@ namespace CreatureLib::Battling { ExecutingAttack(const ExecutingAttack&) = delete; ExecutingAttack& operator=(const ExecutingAttack&) = delete; - virtual ~ExecutingAttack() noexcept { - delete[] _hits; - }; + virtual ~ExecutingAttack() noexcept { delete[] _hits; }; HitData& GetHitData(Creature* creature, uint8_t hit) { for (size_t i = 0; i < _targets.Count(); i++) {