Skip to content

Commit

Permalink
HPCC-30898 Resolve build errors with ubuntu 23.10
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday committed Nov 21, 2023
1 parent 607df4e commit 4369b67
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 4369b67

Please sign in to comment.