We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5034335 commit 4e9368cCopy full SHA for 4e9368c
external/filewatch/FileWatch.hpp
@@ -209,8 +209,8 @@ namespace filewatch {
209
}
210
211
// Const memeber varibles don't let me implent moves nicely, if moves are really wanted std::unique_ptr should be used and move that.
212
- FileWatch<StringType>(FileWatch<StringType>&&) = delete;
213
- FileWatch<StringType>& operator=(FileWatch<StringType>&&) & = delete;
+ FileWatch(FileWatch&&) = delete;
+ FileWatch& operator=(FileWatch&&) & = delete;
214
215
private:
216
static constexpr C _regex_all[] = { '.', '*', '\0' };
0 commit comments