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:
@@ -2,7 +2,7 @@
|
||||
#include "net.minecraft.world.level.biome.h"
|
||||
#include "net.minecraft.world.level.newbiome.layer.h"
|
||||
|
||||
TemperatureMixerLayer::TemperatureMixerLayer(shared_ptr<Layer>temp, shared_ptr<Layer>parent, int layer) : Layer(0)
|
||||
TemperatureMixerLayer::TemperatureMixerLayer(std::shared_ptr<Layer>temp, std::shared_ptr<Layer>parent, int layer) : Layer(0)
|
||||
{
|
||||
this->parent = parent;
|
||||
this->temp = temp;
|
||||
|
||||
Reference in New Issue
Block a user