@@ -63,14 +63,14 @@ class ProtoGC : GC
63
63
64
64
void enable ()
65
65
{
66
- gc_init_nothrow();
67
- gc_enable();
66
+ . gc_init_nothrow();
67
+ . gc_enable();
68
68
}
69
69
70
70
void disable ()
71
71
{
72
- gc_init_nothrow();
73
- gc_disable();
72
+ . gc_init_nothrow();
73
+ . gc_disable();
74
74
}
75
75
76
76
void collect () nothrow
@@ -102,26 +102,26 @@ class ProtoGC : GC
102
102
103
103
void * malloc (size_t size, uint bits, const TypeInfo ti) nothrow
104
104
{
105
- gc_init_nothrow();
106
- return gc_malloc (size, bits, ti);
105
+ . gc_init_nothrow();
106
+ return . gc_malloc(size, bits, ti);
107
107
}
108
108
109
109
BlkInfo qalloc (size_t size, uint bits, const TypeInfo ti) nothrow
110
110
{
111
- gc_init_nothrow();
112
- return gc_qalloc (size, bits, ti);
111
+ . gc_init_nothrow();
112
+ return . gc_qalloc(size, bits, ti);
113
113
}
114
114
115
115
void * calloc (size_t size, uint bits, const TypeInfo ti) nothrow
116
116
{
117
- gc_init_nothrow();
118
- return gc_calloc (size, bits, ti);
117
+ . gc_init_nothrow();
118
+ return . gc_calloc(size, bits, ti);
119
119
}
120
120
121
121
void * realloc (void * p, size_t size, uint bits, const TypeInfo ti) nothrow
122
122
{
123
- gc_init_nothrow();
124
- return gc_realloc (p, size, bits, ti);
123
+ . gc_init_nothrow();
124
+ return . gc_realloc(p, size, bits, ti);
125
125
}
126
126
127
127
size_t extend (void * p, size_t minsize, size_t maxsize, const TypeInfo ti) nothrow
@@ -131,8 +131,8 @@ class ProtoGC : GC
131
131
132
132
size_t reserve (size_t size) nothrow
133
133
{
134
- gc_init_nothrow();
135
- return reserve (size);
134
+ . gc_init_nothrow();
135
+ return .gc_reserve (size);
136
136
}
137
137
138
138
void free (void * p) nothrow @nogc
0 commit comments