- A few Vulkan wrapper structs
- Framework for Vulkan context - Fixed a bug with dynarray where if `resize()` shrinks the array, destructors are not called. - Fixed grammar issues with the containers library and added property tables to existing data structures.
This commit is contained in:
@@ -39,11 +39,11 @@ inline void fennec_test_containers_list() {
|
||||
assertf(test.insert(p, i) == i, "List Construct Test Failed.");
|
||||
}
|
||||
|
||||
while (test.empty() == false) {
|
||||
while (test.is_empty() == false) {
|
||||
test.pop_back();
|
||||
}
|
||||
|
||||
fennec_test_run(test.empty(), true);
|
||||
fennec_test_run(test.is_empty(), true);
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user