shared_ptr -> std::shared_ptr
This is one of the first commits in a plan to remove all `using namespace std;` lines in the entire codebase as it is considered anti-pattern today.
This commit is contained in:
@@ -89,9 +89,9 @@ int QuartzBlockTile::getSpawnResourcesAuxValue(int data)
|
||||
return data;
|
||||
}
|
||||
|
||||
shared_ptr<ItemInstance> QuartzBlockTile::getSilkTouchItemInstance(int data)
|
||||
std::shared_ptr<ItemInstance> QuartzBlockTile::getSilkTouchItemInstance(int data)
|
||||
{
|
||||
if (data == TYPE_LINES_X || data == TYPE_LINES_Z) return shared_ptr<ItemInstance>(new ItemInstance(id, 1, TYPE_LINES_Y));
|
||||
if (data == TYPE_LINES_X || data == TYPE_LINES_Z) return std::shared_ptr<ItemInstance>(new ItemInstance(id, 1, TYPE_LINES_Y));
|
||||
return Tile::getSilkTouchItemInstance(data);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user