Renames ADCellVolumesTraits to CellVolumeIteratorTraits.

This commit is contained in:
Markus Blatt 2015-02-23 12:08:18 +01:00
parent adc499b036
commit 71056f45d6

View File

@ -162,12 +162,12 @@ double cellVolume(const UnstructuredGrid& grid, int cell_index);
/// The value of the mapping is stored in nested type IteratorType
/// \tparam T The type of the grid.
template<class T>
struct ADCellVolumesTraits
struct CellVolumeIteratorTraits
{
};
template<>
struct ADCellVolumesTraits<UnstructuredGrid>
struct CellVolumeIteratorTraits<UnstructuredGrid>
{
typedef const double* IteratorType;
};