Changeset 15478
- Timestamp:
- 11/01/20 08:14:58 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/src/org/armedbear/lisp/ComplexVector_ByteBuffer.java
r15379 r15478 448 448 ByteBuffer newElements = null; 449 449 if (directAllocation) { 450 ByteBuffer.allocateDirect(newCapacity);450 newElements = ByteBuffer.allocateDirect(newCapacity); 451 451 } else { 452 ByteBuffer.allocate(newCapacity);452 newElements = ByteBuffer.allocate(newCapacity); 453 453 } 454 454 newElements.put(elements.array(), 0,
Note: See TracChangeset
for help on using the changeset viewer.