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.
This commit is contained in:
Kenneth Moreland 2020-06-03 09:22:48 -06:00
parent 14338a559c
commit 7fa2c9f769

@ -172,6 +172,7 @@ VTKM_EXEC_CONT auto make_tuple(Ts&&... args) -> decltype(vtkm::MakeTuple(std::fo
return vtkm::MakeTuple(std::forward<Ts>(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<>