From badfccf4400d4be44f703e9e8fac10419b735ac1 Mon Sep 17 00:00:00 2001 From: Deukhoofd Date: Mon, 10 Aug 2020 18:09:32 +0200 Subject: [PATCH] Style fixes. --- src/Library/Species/PokemonForme.cpp | 4 ++-- src/Library/Species/PokemonSpecies.hpp | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Library/Species/PokemonForme.cpp b/src/Library/Species/PokemonForme.cpp index 5847e14..4f169fe 100644 --- a/src/Library/Species/PokemonForme.cpp +++ b/src/Library/Species/PokemonForme.cpp @@ -1,5 +1,4 @@ #include "PokemonForme.hpp" - #include PkmnLib::Library::PokemonForme::PokemonForme(const ArbUt::StringView& name, float height, float weight, uint32_t baseExperience, const ArbUt::List& types, @@ -8,4 +7,5 @@ PkmnLib::Library::PokemonForme::PokemonForme(const ArbUt::StringView& name, floa const ArbUt::List& secretTalents, const CreatureLib::Library::LearnableAttacks* attacks, std::unordered_set flags) - : SpeciesVariant(name, height, weight, baseExperience, types, baseStats, talents, secretTalents, attacks, std::move(flags)) {} + : SpeciesVariant(name, height, weight, baseExperience, types, baseStats, talents, secretTalents, attacks, + std::move(flags)) {} diff --git a/src/Library/Species/PokemonSpecies.hpp b/src/Library/Species/PokemonSpecies.hpp index 48fb151..1e9f8d3 100644 --- a/src/Library/Species/PokemonSpecies.hpp +++ b/src/Library/Species/PokemonSpecies.hpp @@ -15,7 +15,8 @@ namespace PkmnLib::Library { public: PokemonSpecies(uint16_t id, const ArbUt::StringView& name, const PokemonForme* defaultForme, float genderRatio, const ArbUt::StringView& growthRate, uint8_t captureRate, uint8_t baseHappiness, - const ArbUt::List& eggGroups, std::unordered_set flags = {}) noexcept + const ArbUt::List& eggGroups, + std::unordered_set flags = {}) noexcept : CreatureSpecies(id, name, defaultForme, genderRatio, growthRate, captureRate, flags), _baseHappiness(baseHappiness), _eggGroups(eggGroups) {}