From b53836447df7230cd5665a7ccabd2a6e1a6607e5 Mon Sep 17 00:00:00 2001 From: Justus Winter <4winter@informatik.uni-hamburg.de> Date: Wed, 4 Sep 2013 17:18:41 +0200 Subject: Drop the auto keyword Drop the auto keyword from the generated source code. auto is the default storage type for variables anyway and it is customary to omit it. * utils.c (WriteCheckDecl): Drop auto from generated source. (WriteStaticLongDecl): Likewise. (WriteStaticShortDecl): Likewise. --- utils.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'utils.c') diff --git a/utils.c b/utils.c index 4feb874..6c42bc3 100644 --- a/utils.c +++ b/utils.c @@ -181,7 +181,7 @@ WriteCheckDecl(FILE *file, const argument_t *arg) Note we use itOutNameStr instead of itInNameStr, because this declaration will be used to check received types. */ - fprintf(file, "\tauto const mach_msg_type_t %sCheck = {\n", + fprintf(file, "\tconst mach_msg_type_t %sCheck = {\n", arg->argVarName); fprintf(file, "\t\t/* msgt_name = */\t\t%s,\n", it->itOutNameStr); fprintf(file, "\t\t/* msgt_size = */\t\t%d,\n", it->itSize); @@ -261,7 +261,7 @@ static void WriteStaticLongDecl(FILE *file, const ipc_type_t *it, dealloc_t dealloc, boolean_t inname, identifier_t name) { - fprintf(file, "\tauto const mach_msg_type_long_t %s = {\n", name); + fprintf(file, "\tconst mach_msg_type_long_t %s = {\n", name); fprintf(file, "\t{\n"); fprintf(file, "\t\t/* msgt_name = */\t\t0,\n"); fprintf(file, "\t\t/* msgt_size = */\t\t0,\n"); @@ -284,7 +284,7 @@ static void WriteStaticShortDecl(FILE *file, const ipc_type_t *it, dealloc_t dealloc, boolean_t inname, identifier_t name) { - fprintf(file, "\tauto const mach_msg_type_t %s = {\n", name); + fprintf(file, "\tconst mach_msg_type_t %s = {\n", name); fprintf(file, "\t\t/* msgt_name = */\t\t%s,\n", inname ? it->itInNameStr : it->itOutNameStr); fprintf(file, "\t\t/* msgt_size = */\t\t%d,\n", it->itSize); -- cgit v1.2.3