mirror of
https://github.com/dlang/phobos.git
synced 2025-05-08 20:19:43 +03:00
Remove old, redundant private import access specifier
Very very old versions of D (well into 0.x) had imports public by default, like C header files. This modernizes the codebase and removes the redundant `private` access specifier. This has been done with: sed "s/private import/import/g" -i **/*.d
This commit is contained in:
parent
681c74357a
commit
70f06b2357
21 changed files with 63 additions and 63 deletions
|
@ -13,7 +13,7 @@ deprecated("Import the appropriate core.sys.posix.* modules instead")
|
|||
module std.c.linux.socket;
|
||||
|
||||
version (linux):
|
||||
private import core.stdc.stdint;
|
||||
import core.stdc.stdint;
|
||||
public import core.sys.posix.arpa.inet;
|
||||
public import core.sys.posix.netdb;
|
||||
public import core.sys.posix.netinet.in_;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue