From 186f16d2372d75c63ef4efa9f396fa51f4b4d38b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Lu=C3=ADs=20Vaz=20Silva?= Date: Tue, 1 Apr 2025 17:11:59 -0300 Subject: [PATCH] fix comment --- src/common/scripting/vm/vm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/scripting/vm/vm.h b/src/common/scripting/vm/vm.h index 6f6176f280..d4a6b1fa90 100644 --- a/src/common/scripting/vm/vm.h +++ b/src/common/scripting/vm/vm.h @@ -571,7 +571,7 @@ struct vm_decay_pointer_object template struct vm_decay_pointer_void -{ // convert any pointer to a type derived from DObject into a pointer to DObject, and any other to a pointer to void +{ // convert any pointer to a pointer to void using decayed = typename std::pointer_traits::template rebind; };