summaryrefslogtreecommitdiffstats
path: root/cmdline/token_range.h
diff options
context:
space:
mode:
Diffstat (limited to 'cmdline/token_range.h')
-rw-r--r--cmdline/token_range.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmdline/token_range.h b/cmdline/token_range.h
index 50c54fe..5b54384 100644
--- a/cmdline/token_range.h
+++ b/cmdline/token_range.h
@@ -90,10 +90,10 @@ struct TokenRange {
}
// Non-copying copy constructor.
- TokenRange(const TokenRange& other) = default;
+ TokenRange(const TokenRange&) = default;
// Non-copying move constructor.
- TokenRange(TokenRange&& other) = default;
+ TokenRange(TokenRange&&) = default;
// Non-copying constructor. Retains reference to an existing list of tokens, with offset.
explicit TokenRange(std::shared_ptr<TokenList> token_list)