1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-28 16:07:14 +00:00
Files
godot/core
AndreaCatania c81cb64416 Add the possibility to initialize the classes allocated with the PagedAllocator
It uses the (`const T &&... p_args`) forward reference, to avoid copying the
memory in case it's an rvalue, or pass a reference in case it's an lvalue.

This is an example:
```c++
PagedAllocator<btShapeBox> box_allocator;
btShapeBox* box = box_allocator.alloc( btVector3(1.0, 1.0, 1.0) );
```
2021-08-14 09:04:31 +02:00
..
2021-04-27 22:02:35 +02:00
2021-08-13 10:18:34 +02:00
2021-08-13 00:27:38 -05:00
2021-08-13 10:18:34 +02:00
2021-02-10 19:31:24 -03:00
2021-02-10 19:31:24 -03:00
2021-06-25 17:32:45 -03:00
2021-01-01 20:19:21 +01:00