about summary refs log tree commit diff stats
path: root/arc/trace.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2018-04-20 00:06:38 -0700
committerKartik K. Agaram <vc@akkartik.com>2018-04-20 00:06:38 -0700
commit26a5d50613a3c6cc60f9b6206df15772964eb853 (patch)
treea1bb5b80290a424dbdc436c0a125b4aba6cef697 /arc/trace.mu
parent8878326574db7c121ce1bc06b3014eb1986946cc (diff)
downloadmu-26a5d50613a3c6cc60f9b6206df15772964eb853.tar.gz
4235 - fix a build issue for Apple clang 900.0.38
The trouble with rewriting 'unused' to '__attribute__(unused)' is that
if we happen to deliberately introduce '__attribute__(unused)' somehow,
say in the standard headers, then it gets expanded twice to '__attribute__(__attribute__(unused))'.
So we switch to a synonym.
Diffstat (limited to 'arc/trace.mu')
0 files changed, 0 insertions, 0 deletions
616eba862ac80f5ee0003d1aa984a32'>^
34a60763 ^
4c13e1f2 ^









34a60763 ^
4c13e1f2 ^






















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67