aboutsummaryrefslogtreecommitdiffhomepage
path: root/io.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-01-04 01:05:35 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-01-04 01:05:35 -0800
commita79d3c680c9548566309121630dadc94e48934c4 (patch)
tree834f8cf4ad2ed12b753b3c07a1920df7cd789b03 /io.cpp
parentac023f7588e562a03fdea7fd2feda487f18827c7 (diff)
Remove io_duplicate, which is no longer used
Diffstat (limited to 'io.cpp')
-rw-r--r--io.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/io.cpp b/io.cpp
index e5d5a0c1..6a304014 100644
--- a/io.cpp
+++ b/io.cpp
@@ -166,12 +166,6 @@ void io_chain_t::remove(const shared_ptr<const io_data_t> &element)
}
}
-io_chain_t io_chain_t::duplicate() const
-{
- io_chain_t result = *this;
- return result;
-}
-
void io_chain_t::duplicate_prepend(const io_chain_t &src)
{
/* Prepend a duplicate of src before this. */
@@ -188,11 +182,6 @@ void io_remove(io_chain_t &list, const shared_ptr<const io_data_t> &element)
list.remove(element);
}
-io_chain_t io_duplicate(const io_chain_t &chain)
-{
- return chain.duplicate();
-}
-
void io_print(const io_chain_t &chain)
{
if (chain.empty())