From 07ad68bc156b3ab70401723bb074a29588ad3cb7 Mon Sep 17 00:00:00 2001 From: void_17 Date: Mon, 2 Mar 2026 17:10:34 +0700 Subject: dynamic_pointer_cast -> std::dynamic_pointer_cast --- Minecraft.Client/BoatRenderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Minecraft.Client/BoatRenderer.cpp') diff --git a/Minecraft.Client/BoatRenderer.cpp b/Minecraft.Client/BoatRenderer.cpp index 33ffc322..da685681 100644 --- a/Minecraft.Client/BoatRenderer.cpp +++ b/Minecraft.Client/BoatRenderer.cpp @@ -14,7 +14,7 @@ void BoatRenderer::render(std::shared_ptr _boat, double x, double y, dou { // 4J - original version used generics and thus had an input parameter of type Boat rather than std::shared_ptr we have here - // do some casting around instead - std::shared_ptr boat = dynamic_pointer_cast(_boat); + std::shared_ptr boat = std::dynamic_pointer_cast(_boat); glPushMatrix(); -- cgit v1.2.3