Fix macro-in-macro invocation
../src/hb-ot-color-colr-table.hh:980:2: error: embedding a directive within macro arguments has undefined behavior [-Werror,-Wembedded-directive] \#if COLRV1_ENABLE_SUBSETTING == 1
This commit is contained in:
parent
087e2705de
commit
cc3a7ceea3
|
@ -977,14 +977,11 @@ struct COLR
|
|||
return_trace (c->check_struct (this) &&
|
||||
(this+baseGlyphsZ).sanitize (c, numBaseGlyphs) &&
|
||||
(this+layersZ).sanitize (c, numLayers) &&
|
||||
#if COLRV1_ENABLE_SUBSETTING == 1
|
||||
(version == 0 || (version == 1 &&
|
||||
(version == 0 ||
|
||||
(COLRV1_ENABLE_SUBSETTING && version == 1 &&
|
||||
baseGlyphsV1List.sanitize (c, this) &&
|
||||
layersV1.sanitize (c, this) &&
|
||||
varStore.sanitize (c, this))));
|
||||
#else
|
||||
(version == 0));
|
||||
#endif
|
||||
}
|
||||
|
||||
template<typename BaseIterator, typename LayerIterator,
|
||||
|
|
Loading…
Reference in New Issue