summaryrefslogtreecommitdiff
path: root/src/value.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2007-05-16 05:38:49 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 03:38:52 -0400
commit51ef4d79143b6fb0e31aea9053996ec3a09e39a4 (patch)
tree79f528eee34abd61faef6e55a2f423d167f52374 /src/value.cc
parent7c7e5c5e367778c6d54a1bb2be2db5c73db0492b (diff)
downloadfork-ledger-51ef4d79143b6fb0e31aea9053996ec3a09e39a4.tar.gz
fork-ledger-51ef4d79143b6fb0e31aea9053996ec3a09e39a4.tar.bz2
fork-ledger-51ef4d79143b6fb0e31aea9053996ec3a09e39a4.zip
XPath expressions may now yield values.
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()) {