Skip to content

Commit

Permalink
Merge pull request #18061 from ghalliday/issue30898b
Browse files Browse the repository at this point in the history
HPCC-30898 Resolve build errors with ubuntu 23.10

Reviewed-by: Gordon Smith <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Nov 22, 2023
2 parents 30b0d32 + 4369b67 commit ad6abda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ecl/hql/hqlgram2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9689,11 +9689,11 @@ void HqlGram::checkDerivedCompatible(IIdAtom * name, IHqlExpression * scope, IHq
if (match)
{
if (!canBeVirtual(match))
reportError(ERR_MISMATCH_PROTO, errpos, "Definition %s, cannot override this kind of definition", str(name));
reportError(ERR_MISMATCH_PROTO, errpos, "Definition %s, cannot override this kind of definition", nullText(str(name)));
else
{
if (!areSymbolsCompatible(expr, isParametered, parameters, match))
reportError(ERR_MISMATCH_PROTO, errpos, "Prototypes for %s in base and derived modules must match", str(name));
reportError(ERR_MISMATCH_PROTO, errpos, "Prototypes for %s in base and derived modules must match", nullText(str(name)));
}
}
}
Expand Down

0 comments on commit ad6abda

Please sign in to comment.