Change for macos clang
This commit is contained in:
parent
2369aeb0b4
commit
2f24397273
@ -61,12 +61,14 @@ namespace addr2line {
|
||||
return has_addr2line;
|
||||
}
|
||||
|
||||
struct pipe_ends {
|
||||
int read;
|
||||
int write;
|
||||
};
|
||||
|
||||
struct pipe_t {
|
||||
union {
|
||||
struct {
|
||||
int read;
|
||||
int write;
|
||||
} end;
|
||||
pipe_ends end;
|
||||
int data[2];
|
||||
};
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user