Skip to content

Commit 1847f8c

Browse files
authored
Fix missing void keyword in optionals
1 parent 6898f0d commit 1847f8c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pawn/scripting/include/filewatcher.inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ public Extension __ext_filewatcher =
221221
};
222222

223223
#if !defined REQUIRE_EXTENSIONS
224-
public __ext_filewatcher_SetNTVOptional()
224+
public void __ext_filewatcher_SetNTVOptional()
225225
{
226226
MarkNativeAsOptional("FileSystemWatcher.IsWatching.get");
227227
MarkNativeAsOptional("FileSystemWatcher.IsWatching.set");
@@ -242,4 +242,4 @@ public __ext_filewatcher_SetNTVOptional()
242242
MarkNativeAsOptional("FileSystemWatcher.FileSystemWatcher");
243243
MarkNativeAsOptional("FileSystemWatcher.GetPath");
244244
}
245-
#endif
245+
#endif

0 commit comments

Comments
 (0)