From 11bfb050e4712c6b320b8a1256a36a66c60359c0 Mon Sep 17 00:00:00 2001 From: Kristian Evers Date: Mon, 7 May 2018 21:51:42 +0200 Subject: Clean readability-redundant-declaratio clang-tidy warnings Function prototypes were declared twice for the FFIO framework, probably because FFIO at some point during development existed as a separate file. With this commit the second set of function prototypes is removed leaving only the first entry at the top of the file. Similarly duplicate header inclusions has been removed. --- src/gie.c | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'src') diff --git a/src/gie.c b/src/gie.c index 2f3e477d..b912a3ac 100644 --- a/src/gie.c +++ b/src/gie.c @@ -1160,30 +1160,6 @@ See the PROJ ".gie" test suites for examples of supported formatting. ****************************************************************************************/ -#include -#include -#include - -#include -#include - -#include -#include - - - -static int get_inp (ffio *G); -static int skip_to_next_tag (ffio *G); -static int step_into_gie_block (ffio *G); -static int locate_tag (ffio *G, const char *tag); -static int nextline (ffio *G); -static int at_end_delimiter (ffio *G); -static const char *at_tag (ffio *G); -static int at_decorative_element (ffio *G); -static ffio *ffio_destroy (ffio *G); -static ffio *ffio_create (const char **tags, size_t n_tags, size_t max_record_size); - - /***************************************************************************************/ static ffio *ffio_create (const char **tags, size_t n_tags, size_t max_record_size) { -- cgit v1.2.3