aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/lib/strings/str_util.h
diff options
context:
space:
mode:
authorGravatar Alexey Surkov <surkov@google.com>2016-10-14 17:09:16 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-10-14 18:19:15 -0700
commit345b7328871cadaa729052ad5a62a47c26f1595e (patch)
tree4b3dd944d9b987d232f24da5bf9c9ec96ff38614 /tensorflow/core/lib/strings/str_util.h
parentcd92a576f927329a2686c5456402ebd88e9ba710 (diff)
GCS Resumable Upload: use int64 instead of int32 when parsing file offsets.
Change: 136219797
Diffstat (limited to 'tensorflow/core/lib/strings/str_util.h')
-rw-r--r--tensorflow/core/lib/strings/str_util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tensorflow/core/lib/strings/str_util.h b/tensorflow/core/lib/strings/str_util.h
index 135d2f744e..ee197e54e3 100644
--- a/tensorflow/core/lib/strings/str_util.h
+++ b/tensorflow/core/lib/strings/str_util.h
@@ -117,6 +117,8 @@ std::vector<string> Split(StringPiece text, char delim, Predicate p);
// to "*result" and returns true. Otherwise returns false.
bool SplitAndParseAsInts(StringPiece text, char delim,
std::vector<int32>* result);
+bool SplitAndParseAsInts(StringPiece text, char delim,
+ std::vector<int64>* result);
// ------------------------------------------------------------------
// Implementation details below