summaryrefslogtreecommitdiff
path: root/modules/gdnative/include/videodecoder
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-05-14 11:11:27 +0200
committerRémi Verschelde <rverschelde@gmail.com>2020-05-14 13:51:45 +0200
commita1aaed5a84e5206032495ee3d7447847aa8c9515 (patch)
tree90aa672d8623d299282bf6f2bbb7216f6738cdf3 /modules/gdnative/include/videodecoder
parentdcd1151d77cd5579bdd003a933bca86690ed4f58 (diff)
Remove redundant void argument lists
Using clang-tidy's `modernize-redundant-void-arg`. https://clang.llvm.org/extra/clang-tidy/checks/modernize-redundant-void-arg.html
Diffstat (limited to 'modules/gdnative/include/videodecoder')
-rw-r--r--modules/gdnative/include/videodecoder/godot_videodecoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdnative/include/videodecoder/godot_videodecoder.h b/modules/gdnative/include/videodecoder/godot_videodecoder.h
index 3e91a2e9ac..16c92abd22 100644
--- a/modules/gdnative/include/videodecoder/godot_videodecoder.h
+++ b/modules/gdnative/include/videodecoder/godot_videodecoder.h
@@ -46,7 +46,7 @@ typedef struct
void *next;
void *(*constructor)(godot_object *);
void (*destructor)(void *);
- const char *(*get_plugin_name)(void);
+ const char *(*get_plugin_name)();
const char **(*get_supported_extensions)(int *count);
godot_bool (*open_file)(void *, void *); // data struct, and a FileAccess pointer
godot_real (*get_length)(const void *);