Skip to content

Commit 4e9368c

Browse files
committed
Fix compile error on linux
1 parent 5034335 commit 4e9368c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

external/filewatch/FileWatch.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,8 @@ namespace filewatch {
209209
}
210210

211211
// 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;
212+
FileWatch(FileWatch&&) = delete;
213+
FileWatch& operator=(FileWatch&&) & = delete;
214214

215215
private:
216216
static constexpr C _regex_all[] = { '.', '*', '\0' };

0 commit comments

Comments
 (0)