Commit 09729e95 authored by Davis King's avatar Davis King

Added a missing const keyword.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%404237
parent b7594d82
...@@ -21,7 +21,7 @@ namespace dlib ...@@ -21,7 +21,7 @@ namespace dlib
void operator() ( void operator() (
const in_image_type& original, const in_image_type& original,
out_image_type& down out_image_type& down
) ) const
{ {
// make sure requires clause is not broken // make sure requires clause is not broken
DLIB_ASSERT(original.nr() > 10 && original.nc() > 10 && DLIB_ASSERT(original.nr() > 10 && original.nc() > 10 &&
......
...@@ -24,7 +24,7 @@ namespace dlib ...@@ -24,7 +24,7 @@ namespace dlib
void operator() ( void operator() (
const in_image_type& original, const in_image_type& original,
out_image_type& down out_image_type& down
); ) const;
/*! /*!
requires requires
- original.nr() > 10 - original.nr() > 10
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment