Mesh: C++ core guidelines

This commit is contained in:
wmayer
2023-09-25 20:43:31 +02:00
committed by wwmayer
parent dca598f4e5
commit a364141c58
99 changed files with 984 additions and 597 deletions

View File

@@ -41,7 +41,7 @@ using namespace Mesh;
std::string MeshPointPy::representation() const
{
MeshPointPy::PointerType ptr = getMeshPointPtr();
Base::Vector3d vec = *ptr;
Base::Vector3d vec = *ptr; // NOLINT
std::stringstream str;
str << "MeshPoint (";