From 18622941769dbbc3c6c032478e1f30b04b54bd8a Mon Sep 17 00:00:00 2001 From: lifegpc Date: Mon, 3 Jan 2022 09:12:20 +0800 Subject: [PATCH] Fix mingw build issue --- linked_list.h | 1 + 1 file changed, 1 insertion(+) diff --git a/linked_list.h b/linked_list.h index b2723e1..d9fd35e 100644 --- a/linked_list.h +++ b/linked_list.h @@ -3,6 +3,7 @@ #include #include #include +#include template struct LinkedList { T d;