mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-09-10 12:03:16 +02:00
ClassCastException fix
This commit is contained in:
parent
8c79a22ec0
commit
ba23269998
1 changed files with 1 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Add table
Reference in a new issue