Enable clang-tidy in linalg wrappers #414
Labels
priority: low
Issues with low priority
type: clean code
Clean coding and good programming practices
type: enhancement
A new feature or enhancement to be implemented
Description
As pointed out in #403, we do not apply the style format to the files:
4C_linalg_vector.hpp/cpp
4C_linalg_graph.hpp/cpp
This means that the functions should be renamed within the code base.
Clang-Tidy suggests appropriate function names, which are inline with our style-format. As an example, this will look like:
graph.Comm()
->graph.comm()
orget_ref_of_Epetra_Vector
->get_ref_of_epetra_vector()
Possible Solution and Definition of Done
// NOLINTBEGIN(readability-identifier-naming)
at the filesInterested Parties
@amgebauer @mayrmt
The text was updated successfully, but these errors were encountered: