From 80ed1262bd654fe2de30389f97a985b5f2c1d783 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Wed, 30 Oct 2024 21:51:06 +0100 Subject: add more containers and fix use after free --- backend/PtrList.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 backend/PtrList.h (limited to 'backend/PtrList.h') diff --git a/backend/PtrList.h b/backend/PtrList.h new file mode 100644 index 0000000..5442043 --- /dev/null +++ b/backend/PtrList.h @@ -0,0 +1,14 @@ +#pragma once + +#include "List.h" + +template +class PtrList : public List { +public: + using List::List; + virtual ~PtrList(); +}; + +#include "PtrList.hpp" + + -- cgit v1.2.3