We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7affa1 commit 36be541Copy full SHA for 36be541
test/opt/type_manager_test.cpp
@@ -944,15 +944,12 @@ OpMemoryModel Logical GLSL450
944
std::vector<std::unique_ptr<Type>> types = GenerateAllTypes();
945
uint32_t id = 1u;
946
for (auto& t : types) {
947
- std::cout << ". id " << id << std::endl;
948
context->get_type_mgr()->RegisterType(id, *t);
949
EXPECT_EQ(*t, *context->get_type_mgr()->GetType(id));
950
}
951
- std::cout << "clear" << id << std::endl;
952
types.clear();
953
954
for (; id > 0; --id) {
955
- std::cout << ". remove id " << id << std::endl;
956
context->get_type_mgr()->RemoveId(id);
957
EXPECT_EQ(nullptr, context->get_type_mgr()->GetType(id));
958
0 commit comments