| 137 | } |
| 138 | |
| 139 | void JAUSection::disposeUserDisposers_() |
| 140 | { |
| 141 | JSULink<JAUDisposer_> *link = data_._8c.getLast(); |
| 142 | |
| 143 | if (link) |
| 144 | { |
| 145 | JUT_REPORT_MSG("<Ignore these warnings />\n"); |
| 146 | do |
| 147 | { |
| 148 | JSULink<JAUDisposer_> *prev = link->getPrev(); |
| 149 | delete link->getObject(); |
| 150 | data_._8c.remove(link); |
| 151 | link = prev; |
| 152 | } while (link); |
| 153 | JUT_REPORT_MSG("</ Ignore these warnings>\n"); |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | void JAUSection::releaseAllBank_() |
| 158 | { |
no test coverage detected