From ec91092df8f70c4abef6bbb3c4dec6d9511405fe Mon Sep 17 00:00:00 2001 From: ENikS Date: Fri, 5 Sep 2014 11:37:01 -0400 Subject: Fixing compiler warning C4101 Github-Pull: #4856 --- src/db.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/db.h') diff --git a/src/db.h b/src/db.h index bba267b84f..0a8c8537e8 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; } -- cgit v1.2.3