mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
Fix "parameter has incomplete type" on GCC 3.4.6
Fix this GCC 3.4.6 warning, which becomes an error if configure --enable-debug adds -Werror to CFLAGS: [CC] src/document/css/apply.o In file included from /home/Kalle/src/elinks-0.12/src/document/html/internal.h:6, from /home/Kalle/src/elinks-0.12/src/document/css/apply.c:35: /home/Kalle/src/elinks-0.12/src/document/html/parser.h:149: warning: parameter has incomplete type In file included from /home/Kalle/src/elinks-0.12/src/document/css/apply.c:35: /home/Kalle/src/elinks-0.12/src/document/html/internal.h:125: warning: parameter has incomplete type Even without this warning, "enum html_special_type;" would not be standard C89.
This commit is contained in:
parent
4a368ceb32
commit
c9f487cdf4
@ -3,6 +3,7 @@
|
||||
#define EL__DOCUMENT_HTML_PARSER_H
|
||||
|
||||
#include "document/format.h"
|
||||
#include "document/html/renderer.h" /* enum html_special_type */
|
||||
#include "intl/charsets.h" /* unicode_val_T */
|
||||
#include "util/align.h"
|
||||
#include "util/color.h"
|
||||
@ -17,7 +18,6 @@ struct menu_item;
|
||||
struct part;
|
||||
struct string;
|
||||
struct uri;
|
||||
enum html_special_type;
|
||||
|
||||
/* XXX: This is just terible - this interface is from 75% only for other HTML
|
||||
* files - there's lack of any well defined interface and it's all randomly
|
||||
|
Loading…
Reference in New Issue
Block a user