aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/lib/io/table.h
diff options
context:
space:
mode:
authorGravatar Vijay Vasudevan <vrv@google.com>2015-11-16 11:11:36 -0800
committerGravatar Vijay Vasudevan <vrv@google.com>2015-11-16 11:11:36 -0800
commit56313def004795f75ef8281a0294c958d28f1e06 (patch)
treeb1574e8fa6fdeb6f7155511d8e4eccda85f3b0e1 /tensorflow/core/lib/io/table.h
parentcb9fa5fc9de9f3fc97c15bbcce252d7d7fdcb73b (diff)
TensorFlow: Doc and linter fixes, some additional tests and
error handling, updates to website. Changes: - Removes redundant reshape from image models by @mrry - Default TensorBoard to localhost by @danmane - Reformatting of tensorflow/core by @josh11b - Make tutorials backwards compatible to 0.5.0 by @girving - Improve print documentation (md files not updated). - Add proper scrolling to sitemap by @martinwicke Base CL: 107956254
Diffstat (limited to 'tensorflow/core/lib/io/table.h')
-rw-r--r--tensorflow/core/lib/io/table.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/core/lib/io/table.h b/tensorflow/core/lib/io/table.h
index 230dded2d4..6f3d52ad41 100644
--- a/tensorflow/core/lib/io/table.h
+++ b/tensorflow/core/lib/io/table.h
@@ -34,7 +34,7 @@ class Table {
// "*file", but the client must ensure that "file" remains live
// for the duration of the returned table's lifetime.
static Status Open(const Options& options, RandomAccessFile* file,
- uint64 file_size, Table** table);
+ uint64 file_size, Table** table);
~Table();
@@ -62,8 +62,8 @@ class Table {
// to Seek(key). May not make such a call if filter policy says
// that key is not present.
Status InternalGet(const StringPiece& key, void* arg,
- void (*handle_result)(void* arg, const StringPiece& k,
- const StringPiece& v));
+ void (*handle_result)(void* arg, const StringPiece& k,
+ const StringPiece& v));
// No copying allowed
Table(const Table&);