From f44953307bc58eb2a364297416b61c2262a64759 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 23 Feb 2020 11:17:38 +0100 Subject: Remove unnecessary struct names These are not necessary since they are not recursive types, and the names violated the C standard. There also seems to be a bug in Doxygen where TYPEDEF_HIDES_STRUCT was not working, which made the documentation confusing and ugly. Strictly speaking, this could break user code that used these names directly, but this was never intended to be supported and should be fixed if it actually occurs anywhere. --- lv2/log/log.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lv2/log/log.h') diff --git a/lv2/log/log.h b/lv2/log/log.h index 7175339..d60ebb4 100644 --- a/lv2/log/log.h +++ b/lv2/log/log.h @@ -61,7 +61,7 @@ typedef void* LV2_Log_Handle; /** Log feature (LV2_LOG__log) */ -typedef struct _LV2_Log { +typedef struct { /** Opaque pointer to host data. -- cgit v1.2.1