From 59beb5e4e48fa0ae5d8437be581017f6d21227b8 Mon Sep 17 00:00:00 2001 From: Vlad Solomenchuk Date: Mon, 11 Mar 2024 11:29:41 -0700 Subject: [PATCH] fix TARGET_OS_SIMULATOR check --- libi2pd/FS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libi2pd/FS.cpp b/libi2pd/FS.cpp index a02c0818..4d48fc47 100644 --- a/libi2pd/FS.cpp +++ b/libi2pd/FS.cpp @@ -256,7 +256,7 @@ namespace fs { auto p = root + i2p::fs::dirSep + prefix1 + chars[i]; if (boost::filesystem::exists(p)) continue; -#ifdef TARGET_OS_SIMULATOR +#if TARGET_OS_SIMULATOR // ios simulator fs says it is case sensitive, but it is not boost::system::error_code ec; if (boost::filesystem::create_directory(p, ec))