summaryrefslogtreecommitdiffstats
path: root/src/FurnaceRecipe.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-11-27 21:27:03 +0100
committerMattes D <github@xoft.cz>2014-11-27 21:27:03 +0100
commit186b2f3bd06a5f1c34f2cfb3f21ed4ee1f32d0f2 (patch)
tree6cfc06853e5dd420a21b71fd924a93d6045173a3 /src/FurnaceRecipe.cpp
parentCompoGenBiomal: Fixed signed vs unsigned comparison. (diff)
downloadcuberite-186b2f3bd06a5f1c34f2cfb3f21ed4ee1f32d0f2.tar
cuberite-186b2f3bd06a5f1c34f2cfb3f21ed4ee1f32d0f2.tar.gz
cuberite-186b2f3bd06a5f1c34f2cfb3f21ed4ee1f32d0f2.tar.bz2
cuberite-186b2f3bd06a5f1c34f2cfb3f21ed4ee1f32d0f2.tar.lz
cuberite-186b2f3bd06a5f1c34f2cfb3f21ed4ee1f32d0f2.tar.xz
cuberite-186b2f3bd06a5f1c34f2cfb3f21ed4ee1f32d0f2.tar.zst
cuberite-186b2f3bd06a5f1c34f2cfb3f21ed4ee1f32d0f2.zip
Diffstat (limited to 'src/FurnaceRecipe.cpp')
-rw-r--r--src/FurnaceRecipe.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FurnaceRecipe.cpp b/src/FurnaceRecipe.cpp
index 9b3b2ecbe..112aa8146 100644
--- a/src/FurnaceRecipe.cpp
+++ b/src/FurnaceRecipe.cpp
@@ -115,7 +115,7 @@ void cFurnaceRecipe::AddFuelFromLine(const AString & a_Line, unsigned int a_Line
Line.erase(Line.begin()); // Remove the beginning "!"
Line.erase(std::remove_if(Line.begin(), Line.end(), isspace), Line.end());
- std::auto_ptr<cItem> Item(new cItem);
+ std::unique_ptr<cItem> Item(new cItem);
int BurnTime;
const AStringVector & Sides = StringSplit(Line, "=");
@@ -157,8 +157,8 @@ void cFurnaceRecipe::AddRecipeFromLine(const AString & a_Line, unsigned int a_Li
Line.erase(std::remove_if(Line.begin(), Line.end(), isspace), Line.end());
int CookTime = 200;
- std::auto_ptr<cItem> InputItem(new cItem());
- std::auto_ptr<cItem> OutputItem(new cItem());
+ std::unique_ptr<cItem> InputItem(new cItem());
+ std::unique_ptr<cItem> OutputItem(new cItem());
const AStringVector & Sides = StringSplit(Line, "=");
if (Sides.size() != 2)