aboutsummaryrefslogtreecommitdiffstats
path: root/include/utility/iterator_range.h
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-01-25 13:59:42 +0000
committerGravatar Sadie Powell2022-01-25 14:02:36 +0000
commitd79147e7afe2eca34780c607f78b11f8b3dd017d (patch)
treea3f9a145dd53f9c1c268ac9b521ac907b802eab0 /include/utility/iterator_range.h
parentFix a few Doxygen comment errors. (diff)
Abolish the infernal space before accessibility keywords.
Diffstat (limited to 'include/utility/iterator_range.h')
-rw-r--r--include/utility/iterator_range.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/utility/iterator_range.h b/include/utility/iterator_range.h
index cb5025ead..65f611afb 100644
--- a/include/utility/iterator_range.h
+++ b/include/utility/iterator_range.h
@@ -48,14 +48,14 @@ namespace insp
template <typename Iterator>
class insp::iterator_range final
{
- private:
+private:
/** An iterator which points to the start of the range. */
const Iterator begini;
/* An iterator which points to one past the end of the range. */
const Iterator endi;
- public:
+public:
/** Initialises a new iterator range with the specified iterators.
* @param begin An iterator which points to the start of the range.
* @param end An iterator which points to one past the end of the range.