mirror of
https://github.com/pocoproject/poco.git
synced 2025-03-04 19:13:30 +01:00
Fix warning in clang
This commit is contained in:
parent
089d3fcfff
commit
047910b0e5
@ -42,7 +42,7 @@ Cell::~Cell()
|
|||||||
void Cell::setFonts(FontMapPtr pFontMap)
|
void Cell::setFonts(FontMapPtr pFontMap)
|
||||||
{
|
{
|
||||||
_pFontMap = pFontMap;
|
_pFontMap = pFontMap;
|
||||||
if (_pFontMap) poco_assert(_pFontMap->size() == 4);
|
poco_assert(!_pFontMap || (_pFontMap->size() == 4));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user