Skip to content

Commit 460a5e6

Browse files
authored
Vertex bug fix (#76)
1 parent 10ed5ce commit 460a5e6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/CI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
make latexpdf
129129
130130
- name: Upload
131-
uses: actions/upload-artifact@v1
131+
uses: actions/upload-artifact@v4
132132
with:
133133
name: docs
134134
path: Docs/Sphinx/build

Source/EBGeometry_DCEL_VertexImplem.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ namespace DCEL {
4747
inline VertexT<T, Meta>::VertexT(const VertexT<T, Meta>& a_otherVertex)
4848
{
4949
m_position = a_otherVertex.m_position;
50-
m_normal = a_otherVertex.m_m_normal;
50+
m_normal = a_otherVertex.m_normal;
5151
m_outgoingEdge = a_otherVertex.m_outgoingEdge;
5252
}
5353

0 commit comments

Comments
 (0)