We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b53e89 commit c394fb8Copy full SHA for c394fb8
clang/include/indexstore/indexstore.h
@@ -132,7 +132,7 @@ typedef void *indexstore_t;
132
typedef void *indexstore_creation_options_t;
133
134
INDEXSTORE_PUBLIC indexstore_creation_options_t
135
-indexstore_creation_options_create();
+indexstore_creation_options_create(void);
136
137
INDEXSTORE_PUBLIC void
138
indexstore_creation_options_dispose(indexstore_creation_options_t);
clang/tools/IndexStore/IndexStore.cpp
@@ -103,7 +103,7 @@ indexstore_format_version(void) {
103
}
104
105
indexstore_creation_options_t
106
-indexstore_creation_options_create() {
+indexstore_creation_options_create(void) {
107
return new IndexStoreCreationOptions();
108
109
0 commit comments