diff options
| author | Rusty Wagner <rusty@vector35.com> | 2020-06-08 23:11:12 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2020-06-09 18:59:43 -0400 |
| commit | 7b2700b2748b9513811ab6521c9b57e23175c1e2 (patch) | |
| tree | 3d21461fb775caf07a7bb79a92057bf8f222b827 /binaryreader.cpp | |
| parent | ecc69a0da9a7f37e9e126beb17c20e537be92e22 (diff) | |
Fix warnings
Diffstat (limited to 'binaryreader.cpp')
| -rw-r--r-- | binaryreader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binaryreader.cpp b/binaryreader.cpp index 4665aebf..1308a6b4 100644 --- a/binaryreader.cpp +++ b/binaryreader.cpp @@ -299,7 +299,7 @@ string BinaryReader::ReadCString(size_t maxSize) result.push_back(cur); } } - catch (ReadException& r) + catch (ReadException&) {;} return result; } |
