summary refs log tree commit diff stats
path: root/lib/core/allocators.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/core/allocators.nim')
-rw-r--r--lib/core/allocators.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/allocators.nim b/lib/core/allocators.nim
index 4edd00f36..62f5e9756 100644
--- a/lib/core/allocators.nim
+++ b/lib/core/allocators.nim
@@ -8,7 +8,7 @@
 #
 
 type
-  Allocator* {.inheritable.} = ptr object
+  Allocator* = ptr object {.inheritable.}
     alloc*: proc (a: Allocator; size: int; alignment: int = 8): pointer {.nimcall.}
     dealloc*: proc (a: Allocator; p: pointer; size: int) {.nimcall.}
     realloc*: proc (a: Allocator; p: pointer; oldSize, newSize: int): pointer {.nimcall.}
<andreas@andi> 2008-06-22 16:14:11 +0200 committer Andreas Rumpf <andreas@andi> 2008-06-22 16:14:11 +0200 Initial import' href='/ahoang/Nim/commit/lib/sets.nim?h=devel&id=405b86068e6a3d39970b9129ceec0a9108464b28'>405b86068
e9899af9b ^


405b86068
2ca90a20a ^
405b86068

502f7bffa ^
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