From 59374550004958df5cfb50be78d29c5b51c91c41 Mon Sep 17 00:00:00 2001 From: a dinosaur Date: Thu, 23 Jan 2025 19:00:16 +1100 Subject: [PATCH] Linux build fixes --- src/argparse.cpp | 1 + src/strtools.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/argparse.cpp b/src/argparse.cpp index 071e910..2464205 100644 --- a/src/argparse.cpp +++ b/src/argparse.cpp @@ -7,6 +7,7 @@ #include #include #include +#include ArgParse::ArgParser::ArgParser( diff --git a/src/strtools.hpp b/src/strtools.hpp index ad0d0d7..13f4996 100644 --- a/src/strtools.hpp +++ b/src/strtools.hpp @@ -6,6 +6,7 @@ #include #include +#include // Cut leading & trailing whitespace (including newlines) [[nodiscard]] const std::string_view TrimWhitespace(const std::string_view str);