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:
@@ -8,7 +8,7 @@ class InventoryMenu;
|
||||
class UIScene_BrewingStandMenu : public UIScene_AbstractContainerMenu, public IUIScene_BrewingMenu
|
||||
{
|
||||
private:
|
||||
shared_ptr<BrewingStandTileEntity> m_brewingStand;
|
||||
std::shared_ptr<BrewingStandTileEntity> m_brewingStand;
|
||||
|
||||
public:
|
||||
UIScene_BrewingStandMenu(int iPad, void *initData, UILayer *parentLayer);
|
||||
|
||||
Reference in New Issue
Block a user