diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2013-09-04 17:18:41 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-09-04 23:58:32 +0200 |
commit | b53836447df7230cd5665a7ccabd2a6e1a6607e5 (patch) | |
tree | 49fbde23da1895a9f0a4d8583057c4c57d73851c | |
parent | 3040e276779acb6cbf6dbf4be24600c37c6f75ae (diff) | |
download | mig-b53836447df7230cd5665a7ccabd2a6e1a6607e5.tar.gz mig-b53836447df7230cd5665a7ccabd2a6e1a6607e5.tar.bz2 mig-b53836447df7230cd5665a7ccabd2a6e1a6607e5.zip |
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.
-rw-r--r-- | utils.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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); |