From 7fa2c9f76959f8218f40a525a4b3aac25e3fddc1 Mon Sep 17 00:00:00 2001 From: Kenneth Moreland Date: Wed, 3 Jun 2020 09:22:48 -0600 Subject: [PATCH] Update doxygen comments in Tuple.h.in The `Tuple.h` file was updated with some comments that were not updated in `Tuple.h.in`. This caused the pyexpander script to fail with mismatched files. --- vtkm/Tuple.h.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vtkm/Tuple.h.in b/vtkm/Tuple.h.in index 6a2ba23a5..84898d91e 100644 --- a/vtkm/Tuple.h.in +++ b/vtkm/Tuple.h.in @@ -172,6 +172,7 @@ VTKM_EXEC_CONT auto make_tuple(Ts&&... args) -> decltype(vtkm::MakeTuple(std::fo return vtkm::MakeTuple(std::forward(args)...); } +/// @cond NONE namespace detail { struct TupleTransformFunctor @@ -212,6 +213,7 @@ VTKM_EXEC_CONT auto TupleForEach(TupleType&& tuple, Function&& f) } } // namespace detail +/// @endcond template <> class Tuple<>