Following our coding convention initialize the `m_ndimensions' member in
the member initializer list rather than in the body of the constructor
of the `fortran_array_walker' class. No functional change.
Args... args)
: m_type (type),
m_address (address),
- m_impl (type, address, args...)
- {
- m_ndimensions = calc_f77_array_dims (m_type);
- }
+ m_impl (type, address, args...),
+ m_ndimensions (calc_f77_array_dims (m_type))
+ { /* Nothing. */ }
/* Walk the array. */
void