Skip to content

Commit

Permalink
Automated Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 719625535
  • Loading branch information
tensorflower-gardener authored and tensorflow-copybara committed Jan 25, 2025
1 parent 1dd943e commit 34343a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ void AspireVersion(
// Converts the string version path to an integer.
// Returns false if the input is invalid.
bool ParseVersionNumber(const string& version_path, int64_t* version_number) {
return strings::safe_strto64(version_path.c_str(), version_number);
return absl::SimpleAtoi(version_path.c_str(), version_number);
}

// Update the servable data to include all the servable versions found in the
Expand Down

0 comments on commit 34343a9

Please sign in to comment.