Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
willGraham01 committed Jun 5, 2023
1 parent 900faa4 commit bb6bc0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tdms/include/arrays/tensor3d.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ class Tensor3D {
initialise(buffer, n_layers, n_cols, n_rows);
}

/**
/**
* @brief Subscript operator for the Tensor, retrieves the (i,j,k)-th element.
* @note Does not 'call' the tensor, but rather accesses the data.
* @example ...
* @example ...
* @seealso Tensor3D::operator[](const ijk&)
*/
T &operator()(int i, int j, int k) { return data_[to_global_index(i, j, k)]; }
Expand Down

0 comments on commit bb6bc0d

Please sign in to comment.