CFilteredResourceModel: Mark use of push_back over operator<<
This commit is contained in:
parent
fa8c1b3255
commit
dc1b65c7e4
|
@ -27,7 +27,7 @@ public:
|
||||||
{
|
{
|
||||||
if (rkFilter.Accepts(*It))
|
if (rkFilter.Accepts(*It))
|
||||||
{
|
{
|
||||||
mEntries << *It;
|
mEntries.push_back(*It);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue