forked from dlang/phobos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove deprecated symbols from std.digest.digest
The empty file is retained because the module was not deprecated.
- Loading branch information
1 parent
cd2b755
commit 10981b2
Showing
4 changed files
with
15 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
The deprecated aliases in std.digest.digest were removed | ||
|
||
They were deprecated since 2.076.1 and have now been removed. | ||
Import `std.digest` or its submodules instead. | ||
|
||
Additionally the deprecation cycle for `std.digest` was started | ||
and the module will be removed in 2.101. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,3 @@ | ||
// @@@DEPRECATED_2.091@@@ | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.101") | ||
module std.digest.digest; | ||
|
||
import _newDigest = std.digest; | ||
|
||
// @@@DEPRECATED_2.084@@@ | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.084") | ||
alias isDigest = _newDigest.isDigest; | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.084") | ||
alias DigestType = _newDigest.DigestType; | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.084") | ||
alias hasPeek = _newDigest.hasPeek; | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.084") | ||
alias hasBlockSize = _newDigest.hasBlockSize; | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.084") | ||
alias digest = _newDigest.digest; | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.084") | ||
alias hexDigest = _newDigest.hexDigest; | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.084") | ||
alias makeDigest = _newDigest.makeDigest; | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.084") | ||
alias Digest = _newDigest.Digest; | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.084") | ||
alias Order = _newDigest.Order; | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.084") | ||
alias toHexString = _newDigest.toHexString; | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.084") | ||
alias asArray = _newDigest.asArray; | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.084") | ||
alias digestLength = _newDigest.digestLength; | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.084") | ||
alias WrapperDigest = _newDigest.WrapperDigest; | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.084") | ||
alias secureEqual = _newDigest.secureEqual; | ||
deprecated("import std.digest instead of std.digest.digest. std.digest.digest will be removed in 2.084") | ||
alias LetterCase = _newDigest.LetterCase; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters