Obtain auto-allocated memory for use with struct represenations. @param size desired size @return newly-allocated memory
(int size)
| 310 | * @return newly-allocated memory |
| 311 | */ |
| 312 | protected Memory autoAllocate(int size) { |
| 313 | return new AutoAllocated(size); |
| 314 | } |
| 315 | |
| 316 | /** Set the memory used by this structure. This method is used to |
| 317 | * indicate the given structure is nested within another or otherwise |
no outgoing calls
no test coverage detected