1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Add FixedVector template.

This is a high performance `Vector`-like object that can be used if the maximum number of objects is small and known, and the objects are needed only temporarily.
This commit is contained in:
Lukas Tenbrink
2025-04-30 19:08:07 +02:00
parent 32eafc18b4
commit 1b1ab76a14
3 changed files with 271 additions and 0 deletions

View File

@@ -95,6 +95,7 @@
#include "tests/core/string/test_translation_server.h"
#include "tests/core/templates/test_a_hash_map.h"
#include "tests/core/templates/test_command_queue.h"
#include "tests/core/templates/test_fixed_vector.h"
#include "tests/core/templates/test_hash_map.h"
#include "tests/core/templates/test_hash_set.h"
#include "tests/core/templates/test_list.h"