Skip to content

Commit bd538a6

Browse files
committed
style(itkPipeline): tparam Iteratorable to TIterableable
For ITK KWStyle test.
1 parent 60b4750 commit bd538a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

include/itkPipeline.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,13 @@ using CLI::Config;
130130
/**
131131
* @brief Create a glaze arrat_t value from an STL style container.
132132
*
133-
* @tparam Iteratorable Any container type that supports STL style iterator.
133+
* @tparam TIteratorable Any container type that supports STL style iterator.
134134
* @param container Container object.
135135
* @return glz::json_t::array_t with the values from the input container.
136136
*/
137-
template <typename Iteratorable>
137+
template <typename TIteratorable>
138138
glz::json_t::array_t
139-
getArrayJson(Iteratorable container)
139+
getArrayJson(TIteratorable container)
140140
{
141141
glz::json_t::array_t value(container.begin(), container.end());
142142
return value;

0 commit comments

Comments
 (0)