From 0dcae586ea432ef25b7d71a21fbbb0ba50fd9d70 Mon Sep 17 00:00:00 2001 From: Joey Kleingers Date: Wed, 20 Dec 2023 12:35:58 -0500 Subject: [PATCH] Clang format. Signed-off-by: Joey Kleingers --- src/complex/Filter/Actions/CreateGeometry1DAction.hpp | 3 ++- src/complex/Filter/Actions/CreateGeometry2DAction.hpp | 3 ++- src/complex/Filter/Actions/CreateGeometry3DAction.hpp | 3 ++- src/complex/Filter/Actions/CreateRectGridGeometryAction.cpp | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/src/complex/Filter/Actions/CreateGeometry1DAction.hpp b/src/complex/Filter/Actions/CreateGeometry1DAction.hpp index c2e3a44351..218c328c9a 100644 --- a/src/complex/Filter/Actions/CreateGeometry1DAction.hpp +++ b/src/complex/Filter/Actions/CreateGeometry1DAction.hpp @@ -244,7 +244,8 @@ class CreateGeometry1DAction : public IDataCreationAction */ UniquePointer clone() const override { - auto action = std::unique_ptr(new CreateGeometry1DAction(getCreatedPath(), m_NumEdges, m_NumVertices, m_VertexDataName, m_EdgeDataName, m_SharedVerticesName, m_SharedEdgesName)); + auto action = + std::unique_ptr(new CreateGeometry1DAction(getCreatedPath(), m_NumEdges, m_NumVertices, m_VertexDataName, m_EdgeDataName, m_SharedVerticesName, m_SharedEdgesName)); action->m_InputVertices = m_InputVertices; action->m_InputEdges = m_InputEdges; action->m_ArrayHandlingType = m_ArrayHandlingType; diff --git a/src/complex/Filter/Actions/CreateGeometry2DAction.hpp b/src/complex/Filter/Actions/CreateGeometry2DAction.hpp index 9ca0ac6f78..9fb181a4fa 100644 --- a/src/complex/Filter/Actions/CreateGeometry2DAction.hpp +++ b/src/complex/Filter/Actions/CreateGeometry2DAction.hpp @@ -244,7 +244,8 @@ class CreateGeometry2DAction : public IDataCreationAction */ UniquePointer clone() const override { - auto action = std::unique_ptr(new CreateGeometry2DAction(getCreatedPath(), m_NumFaces, m_NumVertices, m_VertexDataName, m_FaceDataName, m_SharedVerticesName, m_SharedFacesName)); + auto action = + std::unique_ptr(new CreateGeometry2DAction(getCreatedPath(), m_NumFaces, m_NumVertices, m_VertexDataName, m_FaceDataName, m_SharedVerticesName, m_SharedFacesName)); action->m_InputVertices = m_InputVertices; action->m_InputFaces = m_InputFaces; action->m_ArrayHandlingType = m_ArrayHandlingType; diff --git a/src/complex/Filter/Actions/CreateGeometry3DAction.hpp b/src/complex/Filter/Actions/CreateGeometry3DAction.hpp index 3a283b5aa4..d3c6efcf6f 100644 --- a/src/complex/Filter/Actions/CreateGeometry3DAction.hpp +++ b/src/complex/Filter/Actions/CreateGeometry3DAction.hpp @@ -243,7 +243,8 @@ class CreateGeometry3DAction : public IDataCreationAction */ UniquePointer clone() const override { - auto action = std::unique_ptr(new CreateGeometry3DAction(getCreatedPath(), m_NumCells, m_NumVertices, m_VertexDataName, m_CellDataName, m_SharedVerticesName, m_SharedCellsName)); + auto action = + std::unique_ptr(new CreateGeometry3DAction(getCreatedPath(), m_NumCells, m_NumVertices, m_VertexDataName, m_CellDataName, m_SharedVerticesName, m_SharedCellsName)); action->m_InputVertices = m_InputVertices; action->m_InputCells = m_InputCells; action->m_ArrayHandlingType = m_ArrayHandlingType; diff --git a/src/complex/Filter/Actions/CreateRectGridGeometryAction.cpp b/src/complex/Filter/Actions/CreateRectGridGeometryAction.cpp index d38163d103..6e91eb89ee 100644 --- a/src/complex/Filter/Actions/CreateRectGridGeometryAction.cpp +++ b/src/complex/Filter/Actions/CreateRectGridGeometryAction.cpp @@ -174,7 +174,8 @@ Result<> CreateRectGridGeometryAction::apply(DataStructure& dataStructure, Mode IDataAction::UniquePointer CreateRectGridGeometryAction::clone() const { - auto action = std::unique_ptr(new CreateRectGridGeometryAction(getCreatedPath(), m_NumXBoundTuples, m_NumYBoundTuples, m_NumZBoundTuples, m_CellDataName, m_XBoundsArrayName, m_YBoundsArrayName, m_ZBoundsArrayName)); + auto action = std::unique_ptr( + new CreateRectGridGeometryAction(getCreatedPath(), m_NumXBoundTuples, m_NumYBoundTuples, m_NumZBoundTuples, m_CellDataName, m_XBoundsArrayName, m_YBoundsArrayName, m_ZBoundsArrayName)); action->m_InputXBounds = m_InputXBounds; action->m_InputYBounds = m_InputYBounds; action->m_InputZBounds = m_InputZBounds;