mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-06 18:35:19 +00:00
Avoid a filename collision on case-insensitive filesystems.
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@666373 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a1e0a6f0d8
commit
176ed368a3
@ -5,19 +5,19 @@ struct thing {
|
||||
2: i32 goodbye
|
||||
}
|
||||
|
||||
enum constants {
|
||||
enum enumconstants {
|
||||
ONE = 1,
|
||||
TWO = 2
|
||||
}
|
||||
|
||||
struct thing2 {
|
||||
1: constants val = TWO
|
||||
1: enumconstants val = TWO
|
||||
}
|
||||
|
||||
typedef i32 myIntType
|
||||
const myIntType myInt = 3
|
||||
|
||||
const map<constants,string> GEN_ENUM_NAMES = {ONE : "HOWDY", TWO: PARTNER}
|
||||
const map<enumconstants,string> GEN_ENUM_NAMES = {ONE : "HOWDY", TWO: PARTNER}
|
||||
|
||||
const i32 hex_const = 0x0001F
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user