diff --git a/Cantera/src/oneD/refine.cpp b/Cantera/src/oneD/refine.cpp index 5626e93a3..c679b9874 100644 --- a/Cantera/src/oneD/refine.cpp +++ b/Cantera/src/oneD/refine.cpp @@ -15,9 +15,8 @@ using namespace std; namespace Cantera { - template - 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; }