Solaris warns about templated static functions.

This commit is contained in:
Harry Moffat 2006-03-07 20:47:29 +00:00
parent 96a988c2b1
commit 5d0b71fc3a

View file

@ -15,9 +15,8 @@ using namespace std;
namespace Cantera {
template<class M>
static bool has_key(const M& m, int j) {
bool has_key(const M& m, int j) {
if (m.find(j) != m.end()) return true;
return false;
}