summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--lib/system.nim6
-rw-r--r--lib/system/stacktraces.nim2
2 files changed, 1 insertions, 7 deletions
diff --git a/lib/system.nim b/lib/system.nim
index a9c45f8fa..0784cacce 100644
--- a/lib/system.nim
+++ b/lib/system.nim
@@ -1410,12 +1410,6 @@ type # these work for most platforms:
   culonglong* {.importc: "unsigned long long", nodecl.} = uint64
     ## This is the same as the type ``unsigned long long`` in *C*.
 
-  # There is a disparity on macOS where Nim's `uint` is `unsigned long long` and
-  # `uintptr_t` is `unsigned long`. Even though both data types are the same
-  # size (64 bits), clang++ refuses to do automatic conversion between them.
-  cuintptr_t* {.importc: "uintptr_t", nodecl.} = uint
-    ## This is the same as the type ``uintptr_t`` in *C*.
-
   cstringArray* {.importc: "char**", nodecl.} = ptr UncheckedArray[cstring]
     ## This is binary compatible to the type ``char**`` in *C*. The array's
     ## high value is large enough to disable bounds checking in practice.
diff --git a/lib/system/stacktraces.nim b/lib/system/stacktraces.nim
index 62de27260..6c7b1433c 100644
--- a/lib/system/stacktraces.nim
+++ b/lib/system/stacktraces.nim
@@ -18,7 +18,7 @@ const
 when defined(nimStackTraceOverride):
   ## Procedure types for overriding the default stack trace.
   type
-    cuintptr_t {.importc: "uintptr_t", nodecl.} = uint
+    cuintptr_t* {.importc: "uintptr_t", nodecl.} = uint
       ## This is the same as the type ``uintptr_t`` in C.
 
     StackTraceOverrideGetTracebackProc* = proc (): string {.
vision' href='/akspecs/ranger/blame/doc/ranger.applications.html?h=v1.2.2&id=4e01caf19cfbc798862e6b8b2dbd77328c8f99a2'>^
4c13e1f2 ^





f07bb12f ^







4c13e1f2 ^

f07bb12f ^
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177