summaryrefslogtreecommitdiff
path: root/src/value.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/value.cc')
-rw-r--r--src/value.cc10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/value.cc b/src/value.cc
index dd2b3a11..949ae696 100644
--- a/src/value.cc
+++ b/src/value.cc
@@ -82,16 +82,6 @@ void value_t::shutdown()
false_value = intrusive_ptr<storage_t>();
}
-value_t& value_t::operator=(const value_t& val)
-{
- if (this == &val || storage == val.storage)
- return *this;
-
- storage = val.storage;
-
- return *this;
-}
-
value_t::operator bool() const
{
switch (type()) {