diff options
| author | ENikS <[email protected]> | 2014-09-05 11:37:01 -0400 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-09-15 14:35:32 +0200 |
| commit | ec91092df8f70c4abef6bbb3c4dec6d9511405fe (patch) | |
| tree | 96e1d0d2930a6a4bb1942504450a1189e16244bc /src/main.cpp | |
| parent | Merge pull request #4919 (diff) | |
| download | discoin-ec91092df8f70c4abef6bbb3c4dec6d9511405fe.tar.xz discoin-ec91092df8f70c4abef6bbb3c4dec6d9511405fe.zip | |
Fixing compiler warning C4101
Github-Pull: #4856
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 02d4bfa8a..1b746a0b0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3163,7 +3163,7 @@ bool LoadExternalBlockFile(FILE* fileIn, CDiskBlockPos *dbp) blkdat >> nSize; if (nSize < 80 || nSize > MAX_BLOCK_SIZE) continue; - } catch (std::exception &e) { + } catch (const std::exception &) { // no valid block header found; don't complain break; } |