-added export attribute
This commit is contained in:
parent
9220a28f7c
commit
cb257a2360
4 changed files with 28 additions and 26 deletions
|
|
@ -11,8 +11,8 @@ export @nogc @safe nothrow pure size_t nextPow2(size_t num) {
|
|||
return 1 << bsr(num) + 1;
|
||||
}
|
||||
|
||||
__gshared size_t gVectorsCreated = 0;
|
||||
__gshared size_t gVectorsDestroyed = 0;
|
||||
export __gshared size_t gVectorsCreated = 0;
|
||||
export __gshared size_t gVectorsDestroyed = 0;
|
||||
|
||||
struct Vector(T) {
|
||||
T[] array;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue