aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/common_runtime/executor.h
diff options
context:
space:
mode:
authorGravatar Suharsh Sivakumar <suharshs@google.com>2017-04-04 08:36:03 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-04-04 09:50:07 -0700
commit0873aa5725dfb401d32ed73e0d28583e3cdc8069 (patch)
tree71ccdf6b1eef2aad9158b70223bd7370ab934d55 /tensorflow/core/common_runtime/executor.h
parent9c4124ce9249aa5b2edca441a8e2a01cf6587ddb (diff)
Fix all 64/32 bit warning in core/common_runtime.
Change: 152141388
Diffstat (limited to 'tensorflow/core/common_runtime/executor.h')
-rw-r--r--tensorflow/core/common_runtime/executor.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/core/common_runtime/executor.h b/tensorflow/core/common_runtime/executor.h
index 239c9666e3..93b58906dd 100644
--- a/tensorflow/core/common_runtime/executor.h
+++ b/tensorflow/core/common_runtime/executor.h
@@ -162,7 +162,7 @@ class ExecutorBarrier {
//
// 'done' is called after the last executor completes, and
// ExecutorBarrier is deleted.
- ExecutorBarrier(int num, Rendezvous* r, StatusCallback done)
+ ExecutorBarrier(size_t num, Rendezvous* r, StatusCallback done)
: rendez_(r), done_cb_(done), pending_(num) {}
~ExecutorBarrier() {}