From cd735ebad3f969bf62d4b54b122d87942f65358e Mon Sep 17 00:00:00 2001 From: Alexander McCord Date: Mon, 27 May 2024 22:22:18 -0700 Subject: [PATCH] Slice is final. --- EqSat/include/Luau/Slice.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EqSat/include/Luau/Slice.h b/EqSat/include/Luau/Slice.h index a43642b2..cca911c8 100644 --- a/EqSat/include/Luau/Slice.h +++ b/EqSat/include/Luau/Slice.h @@ -9,7 +9,7 @@ namespace Luau::EqSat { template -class Slice +class Slice final { T* _data; size_t _size;