aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/framework/attr_value.proto
diff options
context:
space:
mode:
authorGravatar Asim Shankar <ashankar@google.com>2016-09-07 21:15:52 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-09-07 22:33:20 -0700
commitc0169dc34a99d8541bd420ddf7b73e1e37dfbf19 (patch)
tree4ba7f5c43c260603cec88c5e6ee9630c3258c10f /tensorflow/core/framework/attr_value.proto
parent67229ecfdd2e8395ae94a05b8ba8b02bd9e0caaf (diff)
Cosmetic: Consistently avoid using a namespace specifier when the 'using'
statement in the file obviates it. Change: 132517534
Diffstat (limited to 'tensorflow/core/framework/attr_value.proto')
-rw-r--r--tensorflow/core/framework/attr_value.proto2
1 files changed, 2 insertions, 0 deletions
diff --git a/tensorflow/core/framework/attr_value.proto b/tensorflow/core/framework/attr_value.proto
index 3108b46f0b..f115329c53 100644
--- a/tensorflow/core/framework/attr_value.proto
+++ b/tensorflow/core/framework/attr_value.proto
@@ -14,6 +14,7 @@ import "tensorflow/core/framework/types.proto";
// Comment indicates the corresponding attr type. Only the field matching the
// attr type may be filled.
message AttrValue {
+ // LINT.IfChange
message ListValue {
repeated bytes s = 2; // "list(string)"
repeated int64 i = 3 [packed = true]; // "list(int)"
@@ -24,6 +25,7 @@ message AttrValue {
repeated TensorProto tensor = 8; // "list(tensor)"
// TODO(zhifengc/josh11b): implements list(func) if needed.
}
+ // LINT.ThenChange(https://www.tensorflow.org/code/tensorflow/c/c_api.cc)
oneof value {
bytes s = 2; // "string"