mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
that was defined using a Macro: Use the file of the presumed location, not of the SourceBuffer. rdar://problem/49181568
8 lines
105 B
C
8 lines
105 B
C
#define MY_ENUM(NAME) \
|
|
enum NAME : int NAME; \
|
|
enum NAME : int
|
|
|
|
MY_ENUM(macro_enum) {
|
|
zero = 0
|
|
};
|