diff options
Diffstat (limited to 'src/BrewingRecipes.h')
-rw-r--r-- | src/BrewingRecipes.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/BrewingRecipes.h b/src/BrewingRecipes.h index 78e1c196b..1a8a9633b 100644 --- a/src/BrewingRecipes.h +++ b/src/BrewingRecipes.h @@ -13,7 +13,7 @@ class cBrewingRecipes { -public: + public: cBrewingRecipes(void); void ReloadRecipes(void); @@ -43,7 +43,8 @@ public: /** Returns true if the item is the fuel, false if not. */ bool IsFuel(const cItem & a_Item) const; -private: + + private: using cRecipes = std::vector<std::unique_ptr<cBrewingRecipes::cRecipe>>; void ClearRecipes(void); @@ -56,6 +57,7 @@ private: bool ParseItem(const AString & a_String, cItem & a_Item); /** The collection of parsed recipes. - GetRecipeFrom may cache splash variants of recipes here but the observable behaviour is constant, so this should be mutable. */ + GetRecipeFrom may cache splash variants of recipes here but the observable behaviour is constant, so this should be + mutable. */ mutable cRecipes m_Recipes; }; |