summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Grunert <Sascha.Grunert@rohde-schwarz.com>2016-11-11 13:39:43 +0100
committerSascha Grunert <Sascha.Grunert@rohde-schwarz.com>2016-11-11 13:39:43 +0100
commit415071cb9c98084cb9aaa104e328e3994d614035 (patch)
tree310ba97796bb7efd9f7d8ba707a83d50a2944cd2
parentd3f81d281e944baf640308ecf7c77248e257ddce (diff)
Fixed patterns in functions without bodies
-rw-r--r--src/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.rs b/src/parser.rs
index 719f7e6..31cf2f2 100644
--- a/src/parser.rs
+++ b/src/parser.rs
@@ -146,7 +146,7 @@ pub trait Print {
pub trait Tags {
/// Just extends a given vector with all found tags, unsorted.
/// Transfers ownership of the vector back if done.
- fn get_tags(&self, mut vec: Vec<String>) -> Vec<String>;
+ fn get_tags(&self, vec: Vec<String>) -> Vec<String>;
/// Sort and uniq the tags as well.
/// Transfers ownership of the vector back if done.