Skip to content

Commit

Permalink
removed constructor that doesn't exist (caused exception on vs2015-co…
Browse files Browse the repository at this point in the history
…mpiled dll)
  • Loading branch information
DavidJohnMcLean authored and gangatp committed Dec 17, 2024
1 parent 918ef02 commit 3991d0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/API/lib3mf_triangleset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Abstract: This is a stub class definition of CMeshObject
using namespace Lib3MF::Impl;

CTriangleSet::CTriangleSet(NMR::PModelTriangleSet pTriangleSet, NMR::PModelMeshObject pMeshObject)
: CBase (), m_pTriangleSet (pTriangleSet), m_pMeshObject (pMeshObject)
: m_pTriangleSet (pTriangleSet), m_pMeshObject (pMeshObject)
{
if (pTriangleSet.get() == nullptr)
throw ELib3MFInterfaceException(LIB3MF_ERROR_INVALIDPARAM);
Expand Down

0 comments on commit 3991d0f

Please sign in to comment.