COMMON: Make value parameter of fill a const reference.

This commit is contained in:
Johannes Schickel 2011-11-16 18:16:40 +01:00
parent 61795739f8
commit c2fd35c9ed

View File

@ -100,7 +100,7 @@ char *fill(char *first, char *last, Value val) {
* Sets all elements in the range [first, last) to val.
*/
template<class In, class Value>
In fill(In first, In last, Value val) {
In fill(In first, In last, const Value &val) {
while (first != last)
*first++ = val;
return first;