Readd std prefix

This commit is contained in:
Soggy_Pancake 2026-03-04 04:31:54 -07:00
parent e6ca325025
commit ead6c6546d
2 changed files with 2 additions and 2 deletions

View file

@ -103,7 +103,7 @@ void Chunk::setPos(int x, int y, int z)
// 4J - changed to just set the value rather than make a new one, if we've already created storage
if( bb == NULL )
{
bb = shared_ptr<AABB>(AABB::newPermanent(-g, -g, -g, XZSIZE+g, SIZE+g, XZSIZE+g));
bb = std::shared_ptr<AABB>(AABB::newPermanent(-g, -g, -g, XZSIZE+g, SIZE+g, XZSIZE+g));
}
else
{

View file

@ -47,7 +47,7 @@ public:
int xRenderOffs, yRenderOffs, zRenderOffs;
int xm, ym, zm;
shared_ptr<AABB> bb;
std::shared_ptr<AABB> bb;
ClipChunk *clipChunk;
int id;