Addition to prev. revision [#METR-17973].

This commit is contained in:
Alexey Milovidov 2015-10-05 04:52:00 +03:00
parent 3183deadef
commit baa25bf288

View File

@ -265,7 +265,7 @@ public:
else
throw Exception("Unknown address pattern type: " + *it, ErrorCodes::UNKNOWN_ADDRESS_PATTERN_TYPE);
patterns.push_back(pattern);
patterns.emplace_back(std::move(pattern));
}
}
};