From 5b19635da9a7de3f6415e11f1adfd53a936cc4e9 Mon Sep 17 00:00:00 2001 From: David Rose Date: Mon, 23 Jul 2007 17:53:57 +0000 Subject: [PATCH] compiler warning --- panda/src/putil/simpleHashMap.I | 1 + 1 file changed, 1 insertion(+) diff --git a/panda/src/putil/simpleHashMap.I b/panda/src/putil/simpleHashMap.I index 882877cbf6..1e529595fa 100644 --- a/panda/src/putil/simpleHashMap.I +++ b/panda/src/putil/simpleHashMap.I @@ -167,6 +167,7 @@ store(const Key &key, const Value &data) { // Shouldn't get here unless _num_entries == _table_size, which // shouldn't be possible due to consider_expand_table(). nassertr(false, _table[0]._data); + return _table[0]._data; // To satisfy compiler } ////////////////////////////////////////////////////////////////////