1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

ClassCastException fix

This commit is contained in:
Alain Magloire 2003-09-19 17:57:24 +00:00
parent ba23269998
commit 9acbfd6c2d

View file

@ -98,7 +98,7 @@ public class GNUMakefile extends AbstractMakefile {
if (GNUMakefileUtil.isEndef(line)) { if (GNUMakefileUtil.isEndef(line)) {
// We should have a "define" for a "endef". // We should have a "define" for a "endef".
if (!defines.empty()) { if (!defines.empty()) {
DefineVariable def = (DefineVariable) defines.pop(); VariableDefinition def = (VariableDefinition) defines.pop();
def.setEndLine(endLine); def.setEndLine(endLine);
} }
Endef endef = createEndef(); Endef endef = createEndef();