diff options
author | Noel Grandin <noel@peralex.com> | 2014-07-10 11:30:40 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-07-11 09:34:40 +0200 |
commit | 790f7532a2b42aa7d3f880c16e4410301d6b0180 (patch) | |
tree | 0aee6bfa7618230ec45c6b49d82a6912b0787fa6 /include/basebmp/fillimage.hxx | |
parent | d01e35e1203c85334c504ea7b313db199973c7ae (diff) |
cid#1169841 Big parameter passed by value
Change-Id: I4329eaaa29d5689471092c167104711e4f8c115c
Diffstat (limited to 'include/basebmp/fillimage.hxx')
-rw-r--r-- | include/basebmp/fillimage.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/basebmp/fillimage.hxx b/include/basebmp/fillimage.hxx index a62ebf615801..561b02906c0f 100644 --- a/include/basebmp/fillimage.hxx +++ b/include/basebmp/fillimage.hxx @@ -28,7 +28,7 @@ namespace basebmp template< class DestIterator, class DestAccessor, typename T > void fillImage( DestIterator begin, - DestIterator end, + const DestIterator& end, DestAccessor ad, const T& fillVal ) { |