Added a std:: to transform
This commit is contained in:
parent
4963b88f1e
commit
b99df1b110
1 changed files with 1 additions and 1 deletions
|
|
@ -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));
|
||||
}
|
||||
|
||||
/*!
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue