Merge pull request #10318 from endragor/ordered-hash-map
Implement OrderedHashMap
This commit is contained in:
commit
1e0fc4dc4e
6 changed files with 592 additions and 38 deletions
|
|
@ -37,6 +37,7 @@
|
|||
#include "test_image.h"
|
||||
#include "test_io.h"
|
||||
#include "test_math.h"
|
||||
#include "test_ordered_hash_map.h"
|
||||
#include "test_physics.h"
|
||||
#include "test_physics_2d.h"
|
||||
#include "test_render.h"
|
||||
|
|
@ -130,6 +131,11 @@ MainLoop *test_main(String p_test, const List<String> &p_args) {
|
|||
return TestImage::test();
|
||||
}
|
||||
|
||||
if (p_test == "ordered_hash_map") {
|
||||
|
||||
return TestOrderedHashMap::test();
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue