Skip to content

Commit

Permalink
Clang format.
Browse files Browse the repository at this point in the history
Signed-off-by: Joey Kleingers <[email protected]>
  • Loading branch information
joeykleingers committed Dec 20, 2023
1 parent e84245a commit 0dcae58
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/complex/Filter/Actions/CreateGeometry1DAction.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,8 @@ class CreateGeometry1DAction : public IDataCreationAction
*/
UniquePointer clone() const override
{
auto action = std::unique_ptr<CreateGeometry1DAction>(new CreateGeometry1DAction(getCreatedPath(), m_NumEdges, m_NumVertices, m_VertexDataName, m_EdgeDataName, m_SharedVerticesName, m_SharedEdgesName));
auto action =
std::unique_ptr<CreateGeometry1DAction>(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;
Expand Down
3 changes: 2 additions & 1 deletion src/complex/Filter/Actions/CreateGeometry2DAction.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,8 @@ class CreateGeometry2DAction : public IDataCreationAction
*/
UniquePointer clone() const override
{
auto action = std::unique_ptr<CreateGeometry2DAction>(new CreateGeometry2DAction(getCreatedPath(), m_NumFaces, m_NumVertices, m_VertexDataName, m_FaceDataName, m_SharedVerticesName, m_SharedFacesName));
auto action =
std::unique_ptr<CreateGeometry2DAction>(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;
Expand Down
3 changes: 2 additions & 1 deletion src/complex/Filter/Actions/CreateGeometry3DAction.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,8 @@ class CreateGeometry3DAction : public IDataCreationAction
*/
UniquePointer clone() const override
{
auto action = std::unique_ptr<CreateGeometry3DAction>(new CreateGeometry3DAction(getCreatedPath(), m_NumCells, m_NumVertices, m_VertexDataName, m_CellDataName, m_SharedVerticesName, m_SharedCellsName));
auto action =
std::unique_ptr<CreateGeometry3DAction>(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;
Expand Down
3 changes: 2 additions & 1 deletion src/complex/Filter/Actions/CreateRectGridGeometryAction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ Result<> CreateRectGridGeometryAction::apply(DataStructure& dataStructure, Mode

IDataAction::UniquePointer CreateRectGridGeometryAction::clone() const
{
auto action = std::unique_ptr<CreateRectGridGeometryAction>(new CreateRectGridGeometryAction(getCreatedPath(), m_NumXBoundTuples, m_NumYBoundTuples, m_NumZBoundTuples, m_CellDataName, m_XBoundsArrayName, m_YBoundsArrayName, m_ZBoundsArrayName));
auto action = std::unique_ptr<CreateRectGridGeometryAction>(
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;
Expand Down

0 comments on commit 0dcae58

Please sign in to comment.