summaryrefslogtreecommitdiff
path: root/src/value.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2010-06-13 05:57:02 -0400
committerJohn Wiegley <johnw@newartisans.com>2010-06-13 05:57:02 -0400
commitcf0147fcd04fc7ec4b3849350430e47169581e64 (patch)
tree985c50c080c077fa931ed9bf01c3895cbb851eda /src/value.h
parentb423932c3b1103b74838adb24478d0ddb4b6c591 (diff)
downloadfork-ledger-cf0147fcd04fc7ec4b3849350430e47169581e64.tar.gz
fork-ledger-cf0147fcd04fc7ec4b3849350430e47169581e64.tar.bz2
fork-ledger-cf0147fcd04fc7ec4b3849350430e47169581e64.zip
Removed an invalid called to VERIFY()
Diffstat (limited to 'src/value.h')
-rw-r--r--src/value.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/value.h b/src/value.h
index 03d2550c..6fe24da6 100644
--- a/src/value.h
+++ b/src/value.h
@@ -255,7 +255,6 @@ private:
* subsequently be modified.
*/
void _dup() {
- VERIFY(storage);
if (storage && storage->refc > 1)
storage = new storage_t(*storage.get());
}