Skip to content

Commit

Permalink
GTiff: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed May 10, 2019
1 parent 3e02d6b commit 3709876
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions gdal/frmts/gtiff/geotiff.cpp
Expand Up @@ -245,6 +245,14 @@ enum class GTiffProfile: GByte

class GTiffDataset final : public GDALPamDataset
{
public:
struct MaskOffset
{
int nMask;
int nOffset;
};

private:
CPL_DISALLOW_COPY_ASSIGN(GTiffDataset)

friend class GTiffBitmapBand;
Expand Down Expand Up @@ -280,11 +288,6 @@ class GTiffDataset final : public GDALPamDataset
CPLWorkerThreadPool *m_poCompressThreadPool = nullptr;
CPLMutex *m_hCompressThreadPoolMutex = nullptr;

struct MaskOffset
{
int nMask;
int nOffset;
};
MaskOffset* m_panMaskOffsetLsb = nullptr;
char *m_pszVertUnit = nullptr;
char *m_pszFilename = nullptr;
Expand Down

0 comments on commit 3709876

Please sign in to comment.