Skip to content

Commit 8e1aeeb

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

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
@@ -133,7 +133,7 @@ namespace ssc::runtime::filesystem {
133133
}
134134
#elif SOCKET_RUNTIME_PLATFORM_APPLE
135135
static auto fileManager = [[NSFileManager alloc] init];
136-
bool isDirectory = false;
136+
BOOL isDirectory = false;
137137
const auto fileExistsAtPath = [fileManager
138138
fileExistsAtPath: @(resourcePath.c_str())
139139
isDirectory: &isDirectory

0 commit comments

Comments
 (0)