diff options
author | Bob Dubner <rdubner@symas.com> | 2025-03-18 07:47:39 -0400 |
---|---|---|
committer | Robert Dubner <rdubner@symas.com> | 2025-03-18 12:19:15 -0400 |
commit | c49382fd221fd40bce35a954d64bbda0fd14edef (patch) | |
tree | 868361212a68821bfe4e0d3660149304b2197cf5 /gcc/cobol/show_parse.h | |
parent | 563e6d926d9826d76895086d0c40a29dc90d66e5 (diff) | |
download | gcc-c49382fd221fd40bce35a954d64bbda0fd14edef.zip gcc-c49382fd221fd40bce35a954d64bbda0fd14edef.tar.gz gcc-c49382fd221fd40bce35a954d64bbda0fd14edef.tar.bz2 |
cobol: Bring the code base into compliance with C++14
gcc/cobol
* cdf.y: Make compatible with C++14.
* copybook.h: Likewise.
* dts.h: Likewise.
* except.cc: Likewise.
* genapi.cc: Likewise.
* genutil.cc: Likewise.
* genutil.h: Likewise.
* lexio.cc: Likewise.
* parse.y: Likewise.
* parse_ante.h: Likewise.
* show_parse.h: Likewise.
* symbols.cc: Likewise.
* symbols.h: Likewise.
* util.cc: Likewise.
Diffstat (limited to 'gcc/cobol/show_parse.h')
-rw-r--r-- | gcc/cobol/show_parse.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cobol/show_parse.h b/gcc/cobol/show_parse.h index 81b1283..ad26584 100644 --- a/gcc/cobol/show_parse.h +++ b/gcc/cobol/show_parse.h @@ -170,7 +170,7 @@ extern bool cursor_at_sol; } \ else \ { \ - fprintf(stderr, " %p:%s (%s)", b, b->name, b->type_str()); \ + fprintf(stderr, " %p:%s (%s)", (void*)b, b->name, b->type_str()); \ } \ show_parse_sol = false; \ } while(0); |