Skip to content

Commit

Permalink
STYLE: Remove VectorContainer Identifier template argument from comments
Browse files Browse the repository at this point in the history
Following pull request #4856
commit edae0bc
"STYLE: Remove IdentifierType template argument from VectorContainer uses"
  • Loading branch information
N-Dekker authored and dzenanz committed Oct 17, 2024
1 parent 6b8e453 commit c103044
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Modules/Core/Common/include/itkSTLContainerAdaptor.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace itk
* Here's a usage example of STLContainerAdaptor:
*
\code
itk::STLContainerAdaptor<itk::VectorContainer<size_t, ElementType>> vecAdaptor(aContainer);
itk::STLContainerAdaptor<itk::VectorContainer<ElementType>> vecAdaptor(aContainer);
std::vector<ElementType> & vec = vecAdaptor.GetSTLContainerRef();
// do things with vec ...
// upon return from function, vecAdaptor is destroyed and aContainer is Modified()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class FastMarchingTraitsBase
using NodePairContainerConstIterator = typename NodePairContainerType::ConstIterator;

/*
using NodeContainerType = VectorContainer< IdentifierType, NodeType >;
using NodeContainerType = VectorContainer<NodeType>;
using NodeContainerPointer = typename NodeContainerType::Pointer;
using NodeContainerIterator = typename NodeContainerType::Iterator;
using NodeContainerConstIterator = typename NodeContainerType::ConstIterator;
Expand Down

0 comments on commit c103044

Please sign in to comment.