Skip to content

Commit

Permalink
Merge pull request #3647 from jmdavis/stream
Browse files Browse the repository at this point in the history
Adjust deprecation messages for std.stream.
  • Loading branch information
WalterBright committed Sep 12, 2015
2 parents 3f1e8d1 + 61a3a08 commit 07ee2eb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
7 changes: 4 additions & 3 deletions std/cstream.d
@@ -1,8 +1,8 @@
// Written in the D programming language.

/**
* $(RED Warning: This module is considered out-dated and not up to Phobos'
* current standards. It will be removed by phobos version 2.070.)
* $(RED Deprecated: This module is considered out-dated and not up to Phobos'
* current standards. It will be remove in October 2016.)
*
* The std.cstream module bridges core.stdc.stdio (or std.stdio) and std.stream.
* Both core.stdc.stdio and std.stream are publicly imported by std.cstream.
Expand All @@ -20,7 +20,8 @@
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*/
deprecated("Will be removed by phobos version 2.070") module std.cstream;
deprecated("It will be removed from Phobos in October 2016. If you still need it, go to https://github.com/DigitalMars/undeaD") module std.cstream;
// @@@DEPRECATED_2016-10@@@

public import core.stdc.stdio;
public import std.stream;
Expand Down
8 changes: 4 additions & 4 deletions std/socketstream.d
Expand Up @@ -21,8 +21,8 @@
*/

/**************
* $(RED Warning: This module is considered out-dated and not up to Phobos'
* current standards. It will be removed by phobos version 2.070.)
* $(RED Deprecated: This module is considered out-dated and not up to Phobos'
* current standards. It will be remove in October 2016.)
*
* $(D SocketStream) is a stream for a blocking,
* connected $(D Socket).
Expand All @@ -35,8 +35,8 @@
* Source: $(PHOBOSSRC std/_socketstream.d)
* Macros: WIKI=Phobos/StdSocketstream
*/

deprecated("Will be removed by phobos version 2.070") module std.socketstream;
deprecated("It will be removed from Phobos in October 2016. If you still need it, go to https://github.com/DigitalMars/undeaD") module std.socketstream;
// @@@DEPRECATED_2016-10@@@

private import std.stream;
private import std.socket;
Expand Down
8 changes: 4 additions & 4 deletions std/stream.d
@@ -1,8 +1,8 @@
// Written in the D programming language

/**
* $(RED Warning: This module is considered out-dated and not up to Phobos'
* current standards. It will be removed by phobos version 2.070.)
* $(RED Deprecated: This module is considered out-dated and not up to Phobos'
* current standards. It will be remove in October 2016.)
*
* Source: $(PHOBOSSRC std/_stream.d)
* Macros:
Expand All @@ -25,8 +25,8 @@
* the suitability of this software for any purpose. It is provided
* "as is" without express or implied warranty.
*/

deprecated("Will be removed by phobos version 2.070") module std.stream;
deprecated("It will be removed from Phobos in October 2016. If you still need it, go to https://github.com/DigitalMars/undeaD") module std.stream;
// @@@DEPRECATED_2016-10@@@


import std.internal.cstring;
Expand Down

0 comments on commit 07ee2eb

Please sign in to comment.