From: Akim Demaille Date: Wed, 23 Oct 2013 13:03:45 +0000 (+0200) Subject: style: use /* ... */ comments X-Git-Tag: v3.0.1~8 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/516652b474651d6cbd6f4e0c746b940346d65995 style: use /* ... */ comments * src/complain.c: Here. --- diff --git a/src/complain.c b/src/complain.c index 115b7043..e767490c 100644 --- a/src/complain.c +++ b/src/complain.c @@ -153,10 +153,10 @@ warnings_argmatch (char *args) warnings_are_errors = false; else { - // The length of the possible 'no-' prefix: 3, or 0. + /* The length of the possible 'no-' prefix: 3, or 0. */ size_t no = STRPREFIX_LIT ("no-", args) ? 3 : 0; - // The length of the possible 'error=' (possibly after - // 'no-') prefix: 6, or 0. + /* The length of the possible 'error=' (possibly after + 'no-') prefix: 6, or 0. */ size_t err = STRPREFIX_LIT ("error=", args + no) ? 6 : 0; warning_argmatch (args, no, err);