commit aa5e9cb8b63e39fcbf28eba95c5b722702a2a3da
parent 53801880d81d72cad50fda1afaa265e8a869c9d1
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date: Thu, 3 Mar 2022 09:23:53 +0100
Fix a bunch of compilation warning regarding end of file
Diffstat:
20 files changed, 22 insertions(+), 40 deletions(-)
diff --git a/include/clap/converters/vst2-converter.h b/include/clap/converters/vst2-converter.h
@@ -50,4 +50,4 @@ typedef struct clap_vst2_converter_factory {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/converters/vst3-converter.h b/include/clap/converters/vst3-converter.h
@@ -52,4 +52,4 @@ typedef struct clap_vst3_converter_factory {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/draft/midi-mappings.h b/include/clap/ext/draft/midi-mappings.h
@@ -37,4 +37,4 @@ typedef struct clap_host_midi_mappings {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/draft/preset-load.h b/include/clap/ext/draft/preset-load.h
@@ -16,4 +16,4 @@ typedef struct clap_plugin_preset_load {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/draft/quick-controls.h b/include/clap/ext/draft/quick-controls.h
@@ -46,4 +46,4 @@ typedef struct clap_host_quick_controls {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/draft/track-info.h b/include/clap/ext/draft/track-info.h
@@ -34,4 +34,4 @@ typedef struct clap_host_track_info {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/draft/tuning.h b/include/clap/ext/draft/tuning.h
@@ -21,4 +21,4 @@ typedef struct clap_host_tuning {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/event-filter.h b/include/clap/ext/event-filter.h
@@ -32,4 +32,4 @@ typedef struct clap_host_event_filter {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/gui.h b/include/clap/ext/gui.h
@@ -162,4 +162,4 @@ typedef struct clap_host_gui {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/log.h b/include/clap/ext/log.h
@@ -30,4 +30,4 @@ typedef struct clap_host_log {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/note-name.h b/include/clap/ext/note-name.h
@@ -34,4 +34,4 @@ typedef struct clap_host_note_name {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/note-ports.h b/include/clap/ext/note-ports.h
@@ -76,4 +76,4 @@ typedef struct clap_host_note_ports {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/params.h b/include/clap/ext/params.h
@@ -278,4 +278,4 @@ typedef struct clap_host_params {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/posix-fd-support.h b/include/clap/ext/posix-fd-support.h
@@ -38,4 +38,4 @@ typedef struct clap_host_posix_fd_support {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/render.h b/include/clap/ext/render.h
@@ -36,4 +36,4 @@ typedef struct clap_plugin_render {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/thread-check.h b/include/clap/ext/thread-check.h
@@ -23,4 +23,4 @@ typedef struct clap_host_thread_check {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/thread-pool.h b/include/clap/ext/thread-pool.h
@@ -63,4 +63,4 @@ typedef struct clap_host_thread_pool {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/ext/timer-support.h b/include/clap/ext/timer-support.h
@@ -26,4 +26,4 @@ typedef struct clap_host_timer_support {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/include/clap/plugin.h b/include/clap/plugin.h
@@ -100,4 +100,4 @@ typedef struct clap_plugin {
#ifdef __cplusplus
}
-#endif
-\ No newline at end of file
+#endif
diff --git a/src/main.c b/src/main.c
@@ -2,6 +2,8 @@
// The purpose of this file is to check that all headers compile
int main(int argc, char **argv) {
+ (void)argc;
+ (void)argv;
clap_version_t m = CLAP_VERSION;
return !clap_version_is_compatible(m);
-}
-\ No newline at end of file
+}