mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
ClassCastException fix
This commit is contained in:
parent
ba23269998
commit
9acbfd6c2d
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ public class GNUMakefile extends AbstractMakefile {
|
|||
if (GNUMakefileUtil.isEndef(line)) {
|
||||
// We should have a "define" for a "endef".
|
||||
if (!defines.empty()) {
|
||||
DefineVariable def = (DefineVariable) defines.pop();
|
||||
VariableDefinition def = (VariableDefinition) defines.pop();
|
||||
def.setEndLine(endLine);
|
||||
}
|
||||
Endef endef = createEndef();
|
||||
|
|
Loading…
Add table
Reference in a new issue