aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/periodic_resample
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-12-11 10:01:55 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-12-11 10:05:50 -0800
commitd423542a78257aa32966d6fc26915874803bc166 (patch)
treef75a8a01559472f51a040f5e3a67e3f5f5f1e971 /tensorflow/contrib/periodic_resample
parent0683cdbd8701e4e6a582db1e71d58fcad628e070 (diff)
Remove using-directives
PiperOrigin-RevId: 178632103
Diffstat (limited to 'tensorflow/contrib/periodic_resample')
-rw-r--r--tensorflow/contrib/periodic_resample/ops/array_ops.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/tensorflow/contrib/periodic_resample/ops/array_ops.cc b/tensorflow/contrib/periodic_resample/ops/array_ops.cc
index 6029ad6a0d..c90fc06c7f 100644
--- a/tensorflow/contrib/periodic_resample/ops/array_ops.cc
+++ b/tensorflow/contrib/periodic_resample/ops/array_ops.cc
@@ -19,7 +19,7 @@
#include "tensorflow/core/framework/op_kernel.h"
#include "tensorflow/core/framework/shape_inference.h"
-using namespace tensorflow;
+namespace tensorflow {
REGISTER_OP("PeriodicResample")
.Attr("T: numbertype")
@@ -86,3 +86,5 @@ output: Periodically resampled tensor that has dimensions specified as in
decreased as necessary.
)doc");
+
+} // namespace tensorflow