Fix compilation on Docker CI (#11826)

This commit is contained in:
Michael Steenbeek 2020-05-30 15:23:48 +02:00 committed by GitHub
parent 2bd92527fd
commit da54f19a34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -458,7 +458,10 @@ struct PaletteMap
private:
uint8_t* _data{};
uint32_t _dataLength{};
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-private-field"
uint16_t _numMaps;
#pragma clang diagnostic pop
uint16_t _mapLength;
public: