Added a std:: to transform

This commit is contained in:
Harry Moffat 2008-08-22 14:41:07 +00:00
parent 4963b88f1e
commit b99df1b110

View file

@ -194,7 +194,7 @@ namespace Cantera {
template<class InputIter, class OutputIter, class S>
inline void scale(InputIter begin, InputIter end,
OutputIter out, S scale_factor) {
transform(begin, end, out, timesConstant<S>(scale_factor));
std::transform(begin, end, out, timesConstant<S>(scale_factor));
}
/*!