Remove a variable name in a defaulted function

This fixes a g++ 4.8 warning.
This commit is contained in:
ridiculousfish 2022-09-20 12:54:30 -07:00
parent 81c29d8891
commit e7de342259

View file

@ -136,7 +136,7 @@ class regex_t : noncopyable_t {
re_error_t *out_error = nullptr, re_error_t *out_error = nullptr,
int *out_repl_count = nullptr) const; 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 &operator=(regex_t &&) = default;
~regex_t() = default; ~regex_t() = default;