mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 21:33:09 +00:00
Remove a variable name in a defaulted function
This fixes a g++ 4.8 warning.
This commit is contained in:
parent
81c29d8891
commit
e7de342259
1 changed files with 1 additions and 1 deletions
2
src/re.h
2
src/re.h
|
@ -136,7 +136,7 @@ class regex_t : noncopyable_t {
|
|||
re_error_t *out_error = nullptr,
|
||||
int *out_repl_count = nullptr) const;
|
||||
|
||||
regex_t(regex_t &&other) = default;
|
||||
regex_t(regex_t &&) = default;
|
||||
regex_t &operator=(regex_t &&) = default;
|
||||
~regex_t() = default;
|
||||
|
||||
|
|
Loading…
Reference in a new issue