mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
check if the patch affected others.
This commit is contained in:
parent
b3319e3db9
commit
501d00103f
1 changed files with 1 additions and 1 deletions
|
@ -121,7 +121,7 @@ public class MemoryBlock extends CObject implements ICDIMemoryBlock {
|
||||||
MemoryBlock[] blocks = mgr.listMemoryBlocks();
|
MemoryBlock[] blocks = mgr.listMemoryBlocks();
|
||||||
for (int i = 0; i < blocks.length; i++) {
|
for (int i = 0; i < blocks.length; i++) {
|
||||||
if (! blocks[i].equals(this) && blocks[i].contains(addresses)) {
|
if (! blocks[i].equals(this) && blocks[i].contains(addresses)) {
|
||||||
blocks[i].setDirty(false);
|
blocks[i].setDirty(true);
|
||||||
mgr.update(blocks[i], null);
|
mgr.update(blocks[i], null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue