mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-14 08:47:57 -05:00
Add vector parameter functions to and/or matchers
This commit is contained in:
@ -37,4 +37,9 @@ public:
|
||||
: m_matchers(std::make_move_iterator(matchers.begin()), std::make_move_iterator(matchers.end()))
|
||||
{
|
||||
}
|
||||
|
||||
explicit MatcherAnd(std::vector<std::unique_ptr<AbstractMatcher<TokenType>>> matchers)
|
||||
: m_matchers(std::move(matchers))
|
||||
{
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user