summaryrefslogtreecommitdiff
path: root/test/Recursive.thrift
diff options
context:
space:
mode:
authorJens Geyer <jensg@apache.org>2014-05-02 21:31:55 +0200
committerJens Geyer <jensg@apache.org>2014-05-02 21:31:55 +0200
commit885c6791235e011794a0b65c00f1d9fdf3d233e3 (patch)
treef752bf49fa5157300f63677c7210ff90bfde8747 /test/Recursive.thrift
parent0a7c69cfe643fde10df27f6ddf24a67d36f8fb12 (diff)
downloadthrift-885c6791235e011794a0b65c00f1d9fdf3d233e3.tar.gz
THRIFT-2471 Make cpp.ref annotation language agnostic
Client: compiler general Patch: Dave Watson This closes #113 commit 52b99af4ee1574253dcb77933d76a7ebb2d830df Author: Dave Watson <davejwatson@fb.com> Date: 2014-04-23T20:05:56Z change cpp.ref to & commit 3f9d31cc6140367529fd8f7b1b67056ec321786f Author: Dave Watson <davejwatson@fb.com> Date: 2014-04-23T21:50:29Z Recursion depth limit commit 61468e4534ce9e6a4f4f643bfd00542d13600d83 Author: Dave Watson <davejwatson@fb.com> Date: 2014-04-25T19:59:18Z shared_ptr for reference type
Diffstat (limited to 'test/Recursive.thrift')
-rw-r--r--test/Recursive.thrift4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Recursive.thrift b/test/Recursive.thrift
index c55541be0..9c29983c4 100644
--- a/test/Recursive.thrift
+++ b/test/Recursive.thrift
@@ -23,12 +23,12 @@ struct RecTree {
}
struct RecList {
- 1: RecList nextitem (cpp.ref = "true")
+ 1: RecList & nextitem
3: i16 item
}
struct CoRec {
- 1: CoRec2 other (cpp.ref = "true")
+ 1: CoRec2 & other
}
struct CoRec2 {