| 170 | return _stat(path.c_str(), &status) == 0 && (status.st_mode & S_IFDIR) != 0; |
| 171 | #else |
| 172 | struct stat status {}; |
| 173 | // NOLINTNEXTLINE(hicpp-signed-bitwise) |
| 174 | return stat(path.c_str(), &status) == 0 && (status.st_mode & S_IFDIR) != 0; |
| 175 | #endif |