Remove obsolete comment in UnorderedEquals vector matcher

This commit is contained in:
Martin Hořeňovský 2020-05-18 14:29:50 +02:00
parent f3fe2dcb11
commit 5c502320e8
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 0 additions and 2 deletions

View File

@ -140,8 +140,6 @@ namespace Matchers {
m_target(target)
{}
bool match(std::vector<T, AllocMatch> const& vec) const override {
// Note: This is a reimplementation of std::is_permutation,
// because I don't want to include <algorithm> inside the common path
if (m_target.size() != vec.size()) {
return false;
}