Fix compile warnings

This commit is contained in:
Seth Hillbrand 2022-10-04 16:59:11 -07:00
parent 03d847118a
commit a0865082fb
2 changed files with 3 additions and 3 deletions

View File

@ -983,7 +983,7 @@ void PDF_PLOTTER::emitOutlineNode( OUTLINE_NODE* node, int parentHandle, int nex
if( node->children.size() > 0 )
{
fprintf( m_outputFile, " /Count %lld\n", -1*node->children.size() );
fprintf( m_outputFile, " /Count %zu\n", -1*node->children.size() );
fprintf( m_outputFile, " /First %d 0 R\n", node->children.front()->entryHandle );
fprintf( m_outputFile, " /Last %d 0 R\n", node->children.back()->entryHandle );
}

View File

@ -481,7 +481,7 @@ public:
m_items.begin(), m_items.end(), aNetCode, LIST_ITEM_NETCODE_CMP_LESS() );
if( i == m_items.end() || ( *i )->GetNetCode() != aNetCode )
return {};
return std::nullopt;
return { i };
}
@ -491,7 +491,7 @@ public:
if( aNet != nullptr )
return findItem( aNet->GetNetCode() );
else
return {};
return std::nullopt;
}
std::optional<LIST_ITEM_ITER> addItem( std::unique_ptr<LIST_ITEM> aItem )