From 67104420671c1619bad463c2ff71550b3ad3160c Mon Sep 17 00:00:00 2001 From: Ruakij Date: Mon, 22 Nov 2021 16:14:37 +0100 Subject: [PATCH] Fixed missing imports --- helper/split.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/helper/split.hpp b/helper/split.hpp index e39d718..4a89906 100644 --- a/helper/split.hpp +++ b/helper/split.hpp @@ -1,6 +1,10 @@ #ifndef F7CFE6A7_34BF_4E04_94CF_DB8374980631 #define F7CFE6A7_34BF_4E04_94CF_DB8374980631 +#include +#include +#include + std::vector split(const std::string& s, char delimiter) { std::vector tokens;