Make GCC 4.8 a little happier by removing a copy pasted pointless line

This commit is contained in:
Lirusaito
2013-04-23 22:14:56 -04:00
parent c7a9bd0f4f
commit b60ee67b0c

View File

@@ -203,7 +203,6 @@ inline T* get_ptr_in_map(const std::map<K,T*>& inmap, const K& key)
template <typename K, typename T>
inline bool is_in_map(const std::map<K,T>& inmap, const K& key)
{
typedef typename std::map<K,T>::const_iterator map_iter;
if(inmap.find(key) == inmap.end())
{
return false;