diff options
| author | Eugen Wissner <belka@caraus.de> | 2017-06-09 19:27:54 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2017-06-09 19:27:54 +0200 |
| commit | faa44b6704de22b291269a3c0c118926c21ecaa4 (patch) | |
| tree | e3fd433c9a9c8a820bbed09f3d1f0dac94da2b70 | |
| parent | 278e8514143d91458a393bf8b395c804f979b0ce (diff) | |
| download | tanya-faa44b6704de22b291269a3c0c118926c21ecaa4.tar.gz | |
Remove deprecated tanya.container.vector
| -rw-r--r-- | source/tanya/container/array.d | 3 | ||||
| -rw-r--r-- | source/tanya/container/vector.d | 16 |
2 files changed, 0 insertions, 19 deletions
diff --git a/source/tanya/container/array.d b/source/tanya/container/array.d index 472b376..524afef 100644 --- a/source/tanya/container/array.d +++ b/source/tanya/container/array.d @@ -22,9 +22,6 @@ import std.meta; import std.traits; import tanya.memory; -deprecated("Use tanya.container.array instead.") -alias Vector = Array; - /** * Random-access range for the $(D_PSYMBOL Array). * diff --git a/source/tanya/container/vector.d b/source/tanya/container/vector.d deleted file mode 100644 index a957fe5..0000000 --- a/source/tanya/container/vector.d +++ /dev/null @@ -1,16 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ - -/** - * Single-dimensioned array. - * - * Copyright: Eugene Wissner 2016-2017. - * License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/, - * Mozilla Public License, v. 2.0). - * Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner) - */ -deprecated("Use tanya.container.array instead.") -module tanya.container.vector; - -public import tanya.container.array; |
