From 7cfb0ce89cb5fa53775e914574a068781f713cb5 Mon Sep 17 00:00:00 2001 From: JYJSXX Date: Mon, 2 Sep 2024 14:23:49 +0800 Subject: [PATCH] fix list unincluded --- src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 14e5a6c..b58be3d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,4 +1,5 @@ #include +#include #include #include #include "Human.hpp" @@ -37,7 +38,7 @@ int main(int argc, char** argv){ // std::list list; // list.push_back(1); // for(auto i: list){ - // list.remove(i); + // list.remove(i); //TODO: Error 3 : why? // } return 0; } -- GitLab