Skip to content

Commit 36be541

Browse files
authored
Remove unnecessary debug code (KhronosGroup#5523)
1 parent c7affa1 commit 36be541

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

test/opt/type_manager_test.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -944,15 +944,12 @@ OpMemoryModel Logical GLSL450
944944
std::vector<std::unique_ptr<Type>> types = GenerateAllTypes();
945945
uint32_t id = 1u;
946946
for (auto& t : types) {
947-
std::cout << ". id " << id << std::endl;
948947
context->get_type_mgr()->RegisterType(id, *t);
949948
EXPECT_EQ(*t, *context->get_type_mgr()->GetType(id));
950949
}
951-
std::cout << "clear" << id << std::endl;
952950
types.clear();
953951

954952
for (; id > 0; --id) {
955-
std::cout << ". remove id " << id << std::endl;
956953
context->get_type_mgr()->RemoveId(id);
957954
EXPECT_EQ(nullptr, context->get_type_mgr()->GetType(id));
958955
}

0 commit comments

Comments
 (0)