mirror of
https://github.com/dlang/phobos.git
synced 2025-05-03 00:20:26 +03:00
Temporarily replace new deprecations with comments
Removes deprecations added in 093d636de4
This commit is contained in:
parent
e9ee55c675
commit
d1f2b64b0d
24 changed files with 24 additions and 24 deletions
|
@ -9,7 +9,7 @@
|
|||
* WIKI=Phobos/StdCFenv
|
||||
*/
|
||||
|
||||
deprecated("Please import core.stdc.fenv instead. This module will be removed in December 2015.")
|
||||
/// Please import core.stdc.fenv instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.fenv;
|
||||
|
||||
public import core.stdc.fenv;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* This module is just for making std.socket work under FreeBSD, and these
|
||||
* definitions should actually be in druntime. (core.sys.posix.netdb or sth)
|
||||
*/
|
||||
deprecated("Please import the core.sys.posix.* modules you need instead. This module will be removed in April 2015.")
|
||||
/// Please import the core.sys.posix.* modules you need instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.freebsd.socket;
|
||||
|
||||
public import core.sys.posix.netdb;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* countries.
|
||||
*/
|
||||
|
||||
deprecated("Please import the core.sys.posix.* modules you need instead. This module will be removed in April 2015.")
|
||||
/// Please import the core.sys.posix.* modules you need instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.linux.linux;
|
||||
|
||||
public import core.sys.posix.pthread;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
* Put them separate so they'll be externed - do not link in linuxextern.o
|
||||
*/
|
||||
|
||||
deprecated("Please remove this import. This module is empty and will be removed in April 2015.")
|
||||
/// Please remove this import. This module is empty and will be deprecated in DMD 2.068.
|
||||
module std.c.linux.linuxextern;
|
||||
|
||||
// No longer needed since "extern" storage class
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
* Placed into public domain.
|
||||
*/
|
||||
|
||||
deprecated("Please import core.sys.posix.pthread or the other core.sys.posix.* modules you need instead. This module will be removed in April 2015.")
|
||||
/// Please import core.sys.posix.pthread or the other core.sys.posix.* modules you need instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.linux.pthread;
|
||||
|
||||
import std.c.linux.linux;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*/
|
||||
|
||||
|
||||
deprecated("Please import the core.sys.posix.* modules you need instead. This module will be removed in April 2015.")
|
||||
/// Please import the core.sys.posix.* modules you need instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.linux.socket;
|
||||
|
||||
private import core.stdc.stdint;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
|
||||
|
||||
deprecated("Please import core.sys.posix.termios instead. This module will be removed in April 2015.")
|
||||
/// Please import core.sys.posix.termios instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.linux.termios;
|
||||
|
||||
public import core.sys.posix.termios;
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
* Authors: Leandro Lucarella
|
||||
*/
|
||||
|
||||
deprecated("Please import core.sys.linux.tipc instead. This module will be removed in December 2015.")
|
||||
/// Please import core.sys.linux.tipc instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.linux.tipc;
|
||||
|
||||
public import core.sys.linux.tipc;
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
* Macros:
|
||||
* WIKI=Phobos/StdCLocale
|
||||
*/
|
||||
deprecated("Please import core.stdc.locale instead. This module will be removed in December 2015.")
|
||||
/// Please import core.stdc.locale instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.locale;
|
||||
|
||||
public import core.stdc.locale;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* WIKI=Phobos/StdCMath
|
||||
*/
|
||||
|
||||
deprecated("Please import core.stdc.math instead. This module will be removed in December 2015.")
|
||||
/// Please import core.stdc.math instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.math;
|
||||
|
||||
public import core.stdc.math;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*/
|
||||
|
||||
|
||||
deprecated("Please import the core.sys.posix.* modules you need instead. This module will be removed in April 2015.")
|
||||
/// Please import the core.sys.posix.* modules you need instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.osx.socket;
|
||||
|
||||
private import core.stdc.stdint;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* WIKI=Phobos/StdCProcess
|
||||
*/
|
||||
|
||||
deprecated("Please import core.stdc.stdlib or the core.sys.posix.* modules you need instead. This module will be removed in December 2015.")
|
||||
/// Please import core.stdc.stdlib or the core.sys.posix.* modules you need instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.process;
|
||||
|
||||
private import core.stdc.stddef;
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
/* This is for use with extern(C) variable argument lists. */
|
||||
|
||||
deprecated("Please import core.stdc.stdarg instead. This module will be removed in December 2015.")
|
||||
/// Please import core.stdc.stdarg instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.stdarg;
|
||||
|
||||
public import core.stdc.stdarg;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* WIKI=Phobos/StdCStddef
|
||||
*/
|
||||
|
||||
deprecated("Please import core.stdc.stddef instead. This module will be removed in December 2015.")
|
||||
/// Please import core.stdc.stddef instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.stddef;
|
||||
|
||||
public import core.stdc.stddef;
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
|
||||
|
||||
|
||||
deprecated("Please import core.stdc.stdio instead. This module will be removed in December 2015.")
|
||||
/// Please import core.stdc.stdio instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.stdio;
|
||||
|
||||
public import core.stdc.stdio;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
*/
|
||||
|
||||
|
||||
deprecated("Please import core.stdc.stdlib or core.sys.posix.stdlib instead. This module will be removed in December 2015.")
|
||||
/// Please import core.stdc.stdlib or core.sys.posix.stdlib instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.stdlib;
|
||||
|
||||
public import core.stdc.stdlib;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* WIKI=Phobos/StdCString
|
||||
*/
|
||||
|
||||
deprecated("Please import core.stdc.string instead. This module will be removed in December 2015.")
|
||||
/// Please import core.stdc.string instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.string;
|
||||
|
||||
public import core.stdc.string;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* WIKI=Phobos/StdCTime
|
||||
*/
|
||||
|
||||
deprecated("Please import core.stdc.time instead. This module will be removed in December 2015.")
|
||||
/// Please import core.stdc.time instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.time;
|
||||
|
||||
public import core.stdc.time;
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* WIKI=Phobos/StdCWchar
|
||||
*/
|
||||
|
||||
deprecated("Please import core.stdc.wchar_ instead. This module will be removed in December 2015.")
|
||||
/// Please import core.stdc.wchar_ instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.wcharh;
|
||||
|
||||
public import core.stdc.wchar_;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
deprecated("Please import core.sys.windows.com instead. This module will be removed in April 2015.")
|
||||
/// Please import core.sys.windows.com instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.windows.com;
|
||||
|
||||
public import core.sys.windows.com;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
/// Placed into public domain
|
||||
/// Author: Walter Bright
|
||||
|
||||
deprecated("Please import core.sys.windows.stat instead. This module will be removed in April 2015.")
|
||||
/// Please import core.sys.windows.stat instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.windows.stat;
|
||||
|
||||
public import core.sys.windows.stat;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
/* Windows is a registered trademark of Microsoft Corporation in the United
|
||||
States and other countries. */
|
||||
|
||||
deprecated("Please import core.sys.windows.windows instead. This module will be removed in April 2015.")
|
||||
/// Please import core.sys.windows.windows instead. This module will be deprecated in DMD 2.068.
|
||||
module std.c.windows.windows;
|
||||
|
||||
public import core.sys.windows.windows;
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*/
|
||||
|
||||
|
||||
deprecated("Please import core.sys.windows.winsock2 instead. This module will be removed in April 2015.")
|
||||
/// Please import core.sys.windows.winsock2 instead.This module will be deprecated in DMD 2.068.
|
||||
module std.c.windows.winsock;
|
||||
|
||||
public import core.sys.windows.winsock2;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// Written in the D programming language.
|
||||
|
||||
deprecated("Please import core.sys.windows.com instead. This module will be removed in April 2015.")
|
||||
/// Please import core.sys.windows.com instead. This module will be deprecated in DMD 2.068.
|
||||
module std.windows.iunknown;
|
||||
|
||||
// Replaced by:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue