summaryrefslogtreecommitdiff
path: root/binaryreader.cpp
diff options
context:
space:
mode:
authorRusty Wagner <rusty@vector35.com>2020-06-08 23:11:12 -0400
committerRusty Wagner <rusty@vector35.com>2020-06-09 18:59:43 -0400
commit7b2700b2748b9513811ab6521c9b57e23175c1e2 (patch)
tree3d21461fb775caf07a7bb79a92057bf8f222b827 /binaryreader.cpp
parentecc69a0da9a7f37e9e126beb17c20e537be92e22 (diff)
Fix warnings
Diffstat (limited to 'binaryreader.cpp')
-rw-r--r--binaryreader.cpp2
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;
}