Skip to content
Snippets Groups Projects
Commit 73a30ea5 authored by Adam Wardynski's avatar Adam Wardynski
Browse files

Remove declaration of unused parameter to avoid a warning.

parent c4ead5bd
Branches
No related merge requests found
......@@ -37,14 +37,14 @@ public:
/**
* Getter for a submatch at given index (indexing starts from 1).
*/
virtual const boost::shared_ptr<const Match>& submatch(size_t idx) const {
virtual const boost::shared_ptr<const Match>& submatch(size_t) const {
throw WcclError("Getting a submatch is possible only for a MatchVector.");
}
/**
* Getter for a submatch at given index (indexing starts from 1).
*/
virtual const boost::shared_ptr<Match>& submatch(size_t idx) {
virtual const boost::shared_ptr<Match>& submatch(size_t) {
throw WcclError("Getting a submatch is possible only for a MatchVector.");
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment