1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-10 12:03:16 +02:00

ClassCastException fix

This commit is contained in:
Alain Magloire 2003-09-19 17:46:15 +00:00
parent 8c79a22ec0
commit ba23269998

View file

@ -121,7 +121,7 @@ public class GNUMakefile extends AbstractMakefile {
// We still in a define.
if (!defines.empty()) {
DefineVariable def = (DefineVariable) defines.peek();
VariableDefinition def = (VariableDefinition) defines.peek();
StringBuffer sb = def.getValue();
if (sb.length() > 0) {
sb.append('\n');