diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 676104b7..9ac7a6c3 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -128,7 +128,7 @@ jobs: make latexpdf - name: Upload - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: docs path: Docs/Sphinx/build diff --git a/Source/EBGeometry_DCEL_VertexImplem.hpp b/Source/EBGeometry_DCEL_VertexImplem.hpp index 7baf46d2..702b344e 100644 --- a/Source/EBGeometry_DCEL_VertexImplem.hpp +++ b/Source/EBGeometry_DCEL_VertexImplem.hpp @@ -47,7 +47,7 @@ namespace DCEL { inline VertexT::VertexT(const VertexT& a_otherVertex) { m_position = a_otherVertex.m_position; - m_normal = a_otherVertex.m_m_normal; + m_normal = a_otherVertex.m_normal; m_outgoingEdge = a_otherVertex.m_outgoingEdge; }