Showing with 7 additions and 3 deletions.
  1. +1 −1 std/internal/unicode_comp.d
  2. +1 −1 std/internal/unicode_decomp.d
  3. +2 −0 std/internal/unicode_grapheme.d
  4. +2 −0 std/internal/unicode_norm.d
  5. +1 −1 std/internal/unicode_tables.d
2 changes: 1 addition & 1 deletion std/internal/unicode_comp.d
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module std.internal.unicode_comp;
import std.internal.unicode_tables;

@safe pure nothrow @nogc:
@safe pure nothrow @nogc package(std):

static if (size_t.sizeof == 8)
{
Expand Down
2 changes: 1 addition & 1 deletion std/internal/unicode_decomp.d
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module std.internal.unicode_decomp;
import std.internal.unicode_tables;

@safe pure nothrow @nogc:
@safe pure nothrow @nogc package(std):

static if (size_t.sizeof == 8)
{
Expand Down
2 changes: 2 additions & 0 deletions std/internal/unicode_grapheme.d
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module std.internal.unicode_grapheme;
import std.internal.unicode_tables;

package(std):

static if (size_t.sizeof == 8)
{
//832 bytes
Expand Down
2 changes: 2 additions & 0 deletions std/internal/unicode_norm.d
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module std.internal.unicode_norm;
import std.internal.unicode_tables;

package(std):

static if (size_t.sizeof == 8)
{
//1600 bytes
Expand Down
2 changes: 1 addition & 1 deletion std/internal/unicode_tables.d
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

//dfmt off
module std.internal.unicode_tables;
@safe pure nothrow @nogc:
@safe pure nothrow @nogc package(std):


struct SimpleCaseEntry
Expand Down