mirror of
https://github.com/dlang/phobos.git
synced 2025-04-29 06:30:28 +03:00
Mark the internal unicode code as package
This commit is contained in:
parent
e75831ab22
commit
0cb88c508d
5 changed files with 7 additions and 3 deletions
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
module std.internal.unicode_grapheme;
|
||||
import std.internal.unicode_tables;
|
||||
|
||||
package(std):
|
||||
|
||||
static if (size_t.sizeof == 8)
|
||||
{
|
||||
//832 bytes
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
module std.internal.unicode_norm;
|
||||
import std.internal.unicode_tables;
|
||||
|
||||
package(std):
|
||||
|
||||
static if (size_t.sizeof == 8)
|
||||
{
|
||||
//1600 bytes
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
|
||||
//dfmt off
|
||||
module std.internal.unicode_tables;
|
||||
@safe pure nothrow @nogc:
|
||||
@safe pure nothrow @nogc package(std):
|
||||
|
||||
|
||||
struct SimpleCaseEntry
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue