Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix bad sync with MDAL
  • Loading branch information
vcloarec committed Sep 10, 2020
1 parent 8d1c67f commit 836246e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions external/mdal/mdal_data_model.cpp
Expand Up @@ -319,8 +319,8 @@ void MDAL::DatasetGroup::setIsScalar( bool isScalar )
MDAL::Mesh::Mesh( const std::string &driverName,
size_t faceVerticesMaximumCount,
const std::string &uri )
: mFaceVerticesMaximumCount( faceVerticesMaximumCount )
, mDriverName( driverName )
: mDriverName( driverName )
, mFaceVerticesMaximumCount( faceVerticesMaximumCount )
, mUri( uri )
{
}
Expand Down
1 change: 1 addition & 0 deletions external/mdal/mdal_data_model.hpp
Expand Up @@ -279,6 +279,7 @@ namespace MDAL

private:
const std::string mDriverName;
size_t mFaceVerticesMaximumCount = 0; //typically 3 or 4, sometimes up to 9
const std::string mUri; // file/uri from where it came
std::string mCrs;
};
Expand Down

0 comments on commit 836246e

Please sign in to comment.