Skip to content

Commit

Permalink
Correct the prototype of the remote file stubs.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 707993401
  • Loading branch information
xinhaoyuan authored and copybara-github committed Dec 19, 2024
1 parent 3b4a590 commit f89ae94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/remote_file_oss.cc
Original file line number Diff line number Diff line change
Expand Up @@ -168,11 +168,11 @@ absl::Status RemoteMkdir(std::string_view path) {
LOG(FATAL) << "Filesystem API not supported in iOS/MacOS";
}

absl::Status RemotePathExists(std::string_view path) {
bool RemotePathExists(std::string_view path) {
LOG(FATAL) << "Filesystem API not supported in iOS/MacOS";
}

absl::Status RemotePathIsDirectory(std::string_view path) {
bool RemotePathIsDirectory(std::string_view path) {
LOG(FATAL) << "Filesystem API not supported in iOS/MacOS";
}

Expand Down

0 comments on commit f89ae94

Please sign in to comment.