Skip to content

Commit

Permalink
Fix reimport after rXXXXXX
Browse files Browse the repository at this point in the history
commit_hash:5831a7282e9076bcdaed69e18fd886e648edf8f7
  • Loading branch information
georgthegreat committed Feb 20, 2025
1 parent 11c7a20 commit 7b3e809
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ static absl::optional<T> ReadSysctlByName(const char* name) {
size_t val_size = sizeof(T);
int ret = sysctlbyname(name, &val, &val_size, nullptr, 0);
if (ret == -1) {
return std::nullopt;
return absl::nullopt;
}
return val;
}
Expand Down

0 comments on commit 7b3e809

Please sign in to comment.