Skip to content

Commit d1f407f

Browse files
Removal of tsl-specific integral types.
PiperOrigin-RevId: 846041013
1 parent a33d9da commit d1f407f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tensorflow_serving/servables/tensorflow/saved_model_config_util.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ limitations under the License.
1515

1616
#include "tensorflow_serving/servables/tensorflow/saved_model_config_util.h"
1717

18+
#include <cstdint>
1819
#include <memory>
1920
#include <string>
2021

@@ -96,7 +97,7 @@ absl::StatusOr<SavedModelConfig> LoadSavedModelConfigOrDefault(
9697

9798
LOG(INFO) << "Loading model config from " << saved_model_config_path;
9899
std::string content;
99-
tsl::uint64 file_size = 0;
100+
uint64_t file_size = 0;
100101
TF_RETURN_IF_ERROR(
101102
tsl::Env::Default()->GetFileSize(saved_model_config_path, &file_size));
102103
content.resize(file_size);

0 commit comments

Comments
 (0)