Skip to content

Commit 5ce2682

Browse files
committed
fix(src/runtime/filesystem/resource.cc): use 'BOOL' instead of 'bool' (again)
1 parent 8e1aeeb commit 5ce2682

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/filesystem/resource.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ namespace ssc::runtime::filesystem {
167167
}
168168
#elif SOCKET_RUNTIME_PLATFORM_APPLE
169169
static auto fileManager = [[NSFileManager alloc] init];
170-
bool isDirectory = false;
170+
BOOL isDirectory = false;
171171
const auto fileExistsAtPath = [fileManager
172172
fileExistsAtPath: @(resourcePath.string().c_str())
173173
isDirectory: &isDirectory

0 commit comments

Comments
 (0)