Removed straggling instance of TYPENAME_KEYWORD

This commit is contained in:
Ray Speth 2012-01-19 20:45:23 +00:00
parent cd4d4f01b6
commit db2b9636bb

View file

@ -115,7 +115,7 @@ namespace Cantera {
template<class T>
inline void add_each(T& x, const T& y) {
std::transform(x.begin(), x.end(), y.begin(),
x.begin(), std::plus<TYPENAME_KEYWORD T::value_type>());
x.begin(), std::plus<typename T::value_type>());
}