diff options
author | John Wiegley <johnw@newartisans.com> | 2010-06-13 05:57:02 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-06-13 05:57:02 -0400 |
commit | cf0147fcd04fc7ec4b3849350430e47169581e64 (patch) | |
tree | 985c50c080c077fa931ed9bf01c3895cbb851eda /src/value.h | |
parent | b423932c3b1103b74838adb24478d0ddb4b6c591 (diff) | |
download | fork-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.h | 1 |
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()); } |