summaryrefslogtreecommitdiff
path: root/test/DebugProtoTest.thrift
diff options
context:
space:
mode:
authorDavid Reiss <dreiss@apache.org>2009-04-02 19:24:02 +0000
committerDavid Reiss <dreiss@apache.org>2009-04-02 19:24:02 +0000
commit689c9ad49843879b957d975e24fbb01404bfff79 (patch)
tree17416835c958ccf0acb488b12b738c8468c2bd56 /test/DebugProtoTest.thrift
parentbb4613629b53f91164a0d63d6676edaf70f26cd0 (diff)
downloadthrift-689c9ad49843879b957d975e24fbb01404bfff79.tar.gz
THRIFT-420. Remove all negative structure field ids from the code
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@761393 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/DebugProtoTest.thrift')
-rw-r--r--test/DebugProtoTest.thrift4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/DebugProtoTest.thrift b/test/DebugProtoTest.thrift
index 48a8d6ff5..fb4ce0716 100644
--- a/test/DebugProtoTest.thrift
+++ b/test/DebugProtoTest.thrift
@@ -163,7 +163,7 @@ struct CompactProtoTestStruct {
service Srv {
- i32 Janky(i32 arg);
+ i32 Janky(1: i32 arg);
// return type only methods
@@ -173,7 +173,7 @@ service Srv {
}
service Inherited extends Srv {
- i32 identity(i32 arg)
+ i32 identity(1: i32 arg)
}
service EmptyService {}