mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
Fixed sign conversion warnings in catch_reporter_multi
This commit is contained in:
parent
ef2202b41b
commit
782df1ee92
@ -24,7 +24,7 @@ namespace Catch {
|
|||||||
|
|
||||||
// Keep track of how many listeners we have already inserted,
|
// Keep track of how many listeners we have already inserted,
|
||||||
// so that we can insert them into the main vector at the right place
|
// 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);
|
void updatePreferences(IEventListener const& reporterish);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user