https://gcc.gnu.org/g:9e67a160553c7f06f32c5eb53867c935bc40510f
commit r15-8474-g9e67a160553c7f06f32c5eb53867c935bc40510f Author: Iain Sandoe <i...@sandoe.co.uk> Date: Sun Mar 16 00:18:01 2025 +0000 cobol: Do not overload int64_t, overload long and long long. Since the type that is ued for int64_t varies between platforms trying to overload it creates ambiguous or conflicting overloads. gcc/cobol/ChangeLog: * cdfval.h (struct cdfval_t): Overload long instead of int64_t. Signed-off-by: Iain Sandoe <i...@sandoe.co.uk> Diff: --- gcc/cobol/cdfval.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/cobol/cdfval.h b/gcc/cobol/cdfval.h index 1453f2af5f87..4682db8074be 100644 --- a/gcc/cobol/cdfval.h +++ b/gcc/cobol/cdfval.h @@ -79,7 +79,7 @@ struct cdfval_t : public cdfval_base_t { cdfval_base_t::string = NULL; cdfval_base_t::number = value; } - cdfval_t( int64_t value ) + cdfval_t( long value ) : lineno(yylineno), filename(cobol_filename()) { cdfval_base_t::off = false;