summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-07-10 11:30:40 +0200
committerNoel Grandin <noel@peralex.com>2014-07-11 09:34:40 +0200
commit790f7532a2b42aa7d3f880c16e4410301d6b0180 (patch)
tree0aee6bfa7618230ec45c6b49d82a6912b0787fa6 /include
parentd01e35e1203c85334c504ea7b313db199973c7ae (diff)
cid#1169841 Big parameter passed by value
Change-Id: I4329eaaa29d5689471092c167104711e4f8c115c
Diffstat (limited to 'include')
-rw-r--r--include/basebmp/fillimage.hxx2
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 )
{