mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix id offsets on variables/fields
This commit is contained in:
parent
89395c5d38
commit
b97503af2c
1 changed files with 2 additions and 2 deletions
|
@ -436,7 +436,7 @@ public class DeclarationWrapper implements IDeclaratorOwner
|
||||||
register,
|
register,
|
||||||
staticc,
|
staticc,
|
||||||
startingOffset,
|
startingOffset,
|
||||||
declarator.getNameEndOffset(),
|
declarator.getNameStartOffset(),
|
||||||
((IASTClassSpecifier)scope).getCurrentVisibilityMode());
|
((IASTClassSpecifier)scope).getCurrentVisibilityMode());
|
||||||
}
|
}
|
||||||
private List createParameterList(List currentParameters)
|
private List createParameterList(List currentParameters)
|
||||||
|
@ -486,7 +486,7 @@ public class DeclarationWrapper implements IDeclaratorOwner
|
||||||
register,
|
register,
|
||||||
staticc,
|
staticc,
|
||||||
getStartingOffset(),
|
getStartingOffset(),
|
||||||
declarator.getNameEndOffset());
|
declarator.getNameStartOffset());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue