aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Buland <mbuland@penny-arcade.com>2020-06-22 22:57:26 -0700
committerMike Buland <mbuland@penny-arcade.com>2020-06-22 22:57:26 -0700
commit701f67d8d225874d184aa229599376b1e3a5a6f2 (patch)
tree671cc264ce1289977e17065b0e0d12a969546531
parenta6e4d31306fe08d97c3687858f6b4c107bc1ebbf (diff)
downloadlibbu++-701f67d8d225874d184aa229599376b1e3a5a6f2.tar.gz
libbu++-701f67d8d225874d184aa229599376b1e3a5a6f2.tar.bz2
libbu++-701f67d8d225874d184aa229599376b1e3a5a6f2.tar.xz
libbu++-701f67d8d225874d184aa229599376b1e3a5a6f2.zip
Fixed a bad catch statement.
-rw-r--r--src/unstable/cachebase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unstable/cachebase.h b/src/unstable/cachebase.h
index f96b6d2..66c915f 100644
--- a/src/unstable/cachebase.h
+++ b/src/unstable/cachebase.h
@@ -632,7 +632,7 @@ namespace Bu
632 Bu::ReadWriteMutex::ReadLocker rl( mCacheEntry ); 632 Bu::ReadWriteMutex::ReadLocker rl( mCacheEntry );
633 pEnt = hCacheEntry.get( *i ); 633 pEnt = hCacheEntry.get( *i );
634 } 634 }
635 catch( Bu::HashException ) 635 catch( Bu::HashException & )
636 { 636 {
637 // The entry wasn't there, most likely because it 637 // The entry wasn't there, most likely because it
638 // was deleted. That's ok. 638 // was deleted. That's ok.