diff options
author | John Wiegley <johnw@newartisans.com> | 2007-05-16 05:38:49 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:38:52 -0400 |
commit | 51ef4d79143b6fb0e31aea9053996ec3a09e39a4 (patch) | |
tree | 79f528eee34abd61faef6e55a2f423d167f52374 /src/value.cc | |
parent | 7c7e5c5e367778c6d54a1bb2be2db5c73db0492b (diff) | |
download | fork-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.cc | 10 |
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()) { |