Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterPetrik committed Oct 4, 2021
1 parent 5883a59 commit 686bad0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 4 additions & 4 deletions external/mdal/3rdparty/libplyxx.h
Expand Up @@ -147,10 +147,10 @@ namespace libply
{
public:

IProperty &operator=( unsigned int value ) override { return *this; };
IProperty &operator=( int value ) override { return *this; };
IProperty &operator=( float value ) override { return *this; };
IProperty &operator=( double value ) override { return *this; };
IProperty &operator=( unsigned int ) override { return *this; };
IProperty &operator=( int ) override { return *this; };
IProperty &operator=( float ) override { return *this; };
IProperty &operator=( double ) override { return *this; };

operator unsigned int() override { return 0; };
operator int() override { return 0; };
Expand Down
2 changes: 2 additions & 0 deletions external/mdal/frmts/mdal_ply.cpp
Expand Up @@ -538,6 +538,8 @@ void MDAL::DriverPly::addDataset3D( MDAL::DatasetGroup *group,

void MDAL::DriverPly::save( const std::string &fileName, const std::string &meshName, Mesh *mesh )
{
MDAL_UNUSED( meshName );

MDAL::Log::resetLastStatus();

DatasetGroups groups = mesh->datasetGroups;
Expand Down

0 comments on commit 686bad0

Please sign in to comment.