From 0cb0bbe51ab7d2c80f54d8c7ae22b367ff833127 Mon Sep 17 00:00:00 2001 From: bibo38 Date: Sun, 12 Jul 2015 20:58:19 +0200 Subject: Changing the shared_ptr/unique_ptr constructors to the make_shared/make_unique functions --- src/CraftingRecipes.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/CraftingRecipes.cpp') diff --git a/src/CraftingRecipes.cpp b/src/CraftingRecipes.cpp index c6a407d4b..0bb77d341 100644 --- a/src/CraftingRecipes.cpp +++ b/src/CraftingRecipes.cpp @@ -385,7 +385,7 @@ void cCraftingRecipes::AddRecipeLine(int a_LineNum, const AString & a_RecipeLine return; } - std::unique_ptr Recipe(new cCraftingRecipes::cRecipe); + std::unique_ptr Recipe = cpp14::make_unique(); // Parse the result: AStringVector ResultSplit = StringSplit(Sides[0], ","); @@ -766,7 +766,7 @@ cCraftingRecipes::cRecipe * cCraftingRecipes::MatchRecipe(const cItem * a_Crafti } // for y, for x // The recipe has matched. Create a copy of the recipe and set its coords to match the crafting grid: - std::unique_ptr Recipe(new cRecipe); + std::unique_ptr Recipe = cpp14::make_unique(); Recipe->m_Result = a_Recipe->m_Result; Recipe->m_Width = a_Recipe->m_Width; Recipe->m_Height = a_Recipe->m_Height; -- cgit v1.2.3