From 162d540a7a78bcd75aea002b4afa101133315e8b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 13 Jan 2019 13:59:29 +0100 Subject: Clean up includes Sorts includes from local to global (which catches errors) and fixes missing includes found by the resulting breakage and include-what-you-use. --- bindings/test/bindings_test_plugin.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bindings/test') diff --git a/bindings/test/bindings_test_plugin.c b/bindings/test/bindings_test_plugin.c index 3d6c763..8518117 100644 --- a/bindings/test/bindings_test_plugin.c +++ b/bindings/test/bindings_test_plugin.c @@ -15,10 +15,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/** Include standard C headers */ -#include -#include - /** LV2 headers are based on the URI of the specification they come from, so a consistent convention can be used even for unofficial extensions. The URI @@ -28,6 +24,10 @@ */ #include "lv2/lv2plug.in/ns/lv2core/lv2.h" +/** Include standard C headers */ +#include +#include + /** The URI is the identifier for a plugin, and how the host associates this implementation in code with its description in data. In this plugin it is -- cgit v1.2.1