diff options
author | Sebastian Geerken <devnull@localhost> | 2014-12-23 12:08:36 +0100 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-12-23 12:08:36 +0100 |
commit | 806a0bdfe4c8199d6b8b684e53d84d4723e775be (patch) | |
tree | a7adc3036aeaf8b18131270555cbb75c1abf139e | |
parent | 68a9566b50bedd2366c065477dc953dcf098e19e (diff) |
(Absolute) positions: bug fix.
-rw-r--r-- | dw/oofpositionedmgr.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dw/oofpositionedmgr.cc b/dw/oofpositionedmgr.cc index 334aed30..1e753bda 100644 --- a/dw/oofpositionedmgr.cc +++ b/dw/oofpositionedmgr.cc @@ -606,7 +606,7 @@ bool OOFPositionedMgr::isVPosComplete (Child *child) bool OOFPositionedMgr::isHPosCalculable (Child *child, bool allocated) { return - allocated || (isVPosComplete (child) && child->reference == container); + allocated || (isHPosComplete (child) && child->reference == container); } bool OOFPositionedMgr::isVPosCalculable (Child *child, bool allocated) |