facebookarchive / swift

An annotation-based Java library for creating Thrift serializable types and services.
Apache License 2.0
900 stars 297 forks source link

Fix generator bug with using primitive types as type parameters #55

Closed andrewcox closed 11 years ago

andrewcox commented 11 years ago

For thrift type:

list

where "seq_t" is a typedef to "int64", the generator generates the illegal type:

List

this fixes it to generate:

List

hgschmie commented 11 years ago

LGTM. Test? :-) SCNR.

andrewcox commented 11 years ago

merged