We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60b4750 commit bd538a6Copy full SHA for bd538a6
include/itkPipeline.h
@@ -130,13 +130,13 @@ using CLI::Config;
130
/**
131
* @brief Create a glaze arrat_t value from an STL style container.
132
*
133
- * @tparam Iteratorable Any container type that supports STL style iterator.
+ * @tparam TIteratorable Any container type that supports STL style iterator.
134
* @param container Container object.
135
* @return glz::json_t::array_t with the values from the input container.
136
*/
137
-template <typename Iteratorable>
+template <typename TIteratorable>
138
glz::json_t::array_t
139
-getArrayJson(Iteratorable container)
+getArrayJson(TIteratorable container)
140
{
141
glz::json_t::array_t value(container.begin(), container.end());
142
return value;
0 commit comments