Fixed sign conversion warnings in catch_reporter_multi

This commit is contained in:
wmbat 2023-12-05 20:05:32 -05:00
parent ef2202b41b
commit 782df1ee92

View File

@ -24,7 +24,7 @@ namespace Catch {
// Keep track of how many listeners we have already inserted,
// so that we can insert them into the main vector at the right place
size_t m_insertedListeners = 0;
std::vector<IEventListenerPtr>::difference_type m_insertedListeners = 0;
void updatePreferences(IEventListener const& reporterish);