From 104ae73748d350b5cc292646f5f851bff96ee947 Mon Sep 17 00:00:00 2001 From: hop311 Date: Sun, 15 Oct 2023 20:38:34 +0100 Subject: allow_empty option for expect_identifier_or_string --- src/openvic-simulation/dataloader/Dataloader.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/openvic-simulation/dataloader/Dataloader.cpp') diff --git a/src/openvic-simulation/dataloader/Dataloader.cpp b/src/openvic-simulation/dataloader/Dataloader.cpp index 15c7ce7..f2e94d7 100644 --- a/src/openvic-simulation/dataloader/Dataloader.cpp +++ b/src/openvic-simulation/dataloader/Dataloader.cpp @@ -34,7 +34,7 @@ using namespace OpenVic::NodeTools; using namespace ovdl; // Windows and Mac by default act like case insensitive filesystems -constexpr bool path_equals(std::string_view lhs, std::string_view rhs) { +static constexpr bool path_equals(std::string_view lhs, std::string_view rhs) { #if defined(_WIN32) || (defined(__APPLE__) && defined(__MACH__)) constexpr auto ichar_equals = [](unsigned char l, unsigned char r) { return std::tolower(l) == std::tolower(r); @@ -46,7 +46,7 @@ constexpr bool path_equals(std::string_view lhs, std::string_view rhs) { } template -bool filename_equals(const LT& lhs, const RT& rhs) { +static bool filename_equals(const LT& lhs, const RT& rhs) { std::string left, right; if constexpr (std::same_as) left = lhs.filename().string(); @@ -59,7 +59,7 @@ bool filename_equals(const LT& lhs, const RT& rhs) { return path_equals(left, right); } -fs::path _search_for_game_path(fs::path hint_path = {}) { +static fs::path _search_for_game_path(fs::path hint_path = {}) { // Apparently max amount of steam libraries is 8, if incorrect please correct it to the correct max amount constexpr int max_amount_of_steam_libraries = 8; constexpr std::string_view Victoria_2_folder = "Victoria 2"; -- cgit v1.2.3-56-ga3b1