summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2017-06-09 19:27:54 +0200
committerEugen Wissner <belka@caraus.de>2017-06-09 19:27:54 +0200
commitfaa44b6704de22b291269a3c0c118926c21ecaa4 (patch)
treee3fd433c9a9c8a820bbed09f3d1f0dac94da2b70 /source
parent278e8514143d91458a393bf8b395c804f979b0ce (diff)
downloadtanya-faa44b6704de22b291269a3c0c118926c21ecaa4.tar.gz
Remove deprecated tanya.container.vector
Diffstat (limited to 'source')
-rw-r--r--source/tanya/container/array.d3
-rw-r--r--source/tanya/container/vector.d16
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;