Skip to content

Commit c394fb8

Browse files
committed
indexstore_creation_options_create() --> indexstore_creation_options_create(void)
1 parent 3b53e89 commit c394fb8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

clang/include/indexstore/indexstore.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ typedef void *indexstore_t;
132132
typedef void *indexstore_creation_options_t;
133133

134134
INDEXSTORE_PUBLIC indexstore_creation_options_t
135-
indexstore_creation_options_create();
135+
indexstore_creation_options_create(void);
136136

137137
INDEXSTORE_PUBLIC void
138138
indexstore_creation_options_dispose(indexstore_creation_options_t);

clang/tools/IndexStore/IndexStore.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ indexstore_format_version(void) {
103103
}
104104

105105
indexstore_creation_options_t
106-
indexstore_creation_options_create() {
106+
indexstore_creation_options_create(void) {
107107
return new IndexStoreCreationOptions();
108108
}
109109

0 commit comments

Comments
 (0)