aboutsummaryrefslogtreecommitdiff
path: root/src/db.h
diff options
context:
space:
mode:
authorENikS <[email protected]>2014-09-05 11:37:01 -0400
committerWladimir J. van der Laan <[email protected]>2014-09-15 14:35:32 +0200
commitec91092df8f70c4abef6bbb3c4dec6d9511405fe (patch)
tree96e1d0d2930a6a4bb1942504450a1189e16244bc /src/db.h
parentMerge pull request #4919 (diff)
downloaddiscoin-ec91092df8f70c4abef6bbb3c4dec6d9511405fe.tar.xz
discoin-ec91092df8f70c4abef6bbb3c4dec6d9511405fe.zip
Fixing compiler warning C4101
Github-Pull: #4856
Diffstat (limited to 'src/db.h')
-rw-r--r--src/db.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db.h b/src/db.h
index bba267b84..0a8c8537e 100644
--- a/src/db.h
+++ b/src/db.h
@@ -129,7 +129,7 @@ protected:
CDataStream ssValue((char*)datValue.get_data(), (char*)datValue.get_data() + datValue.get_size(), SER_DISK, CLIENT_VERSION);
ssValue >> value;
}
- catch (std::exception &e) {
+ catch (const std::exception &) {
return false;
}