Skip to content

Commit 8e1aeeb

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)