MCPcopy Create free account
hub / github.com/andreasfertig/cppinsights / main

Function main

tests/Issue184.cpp:28–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

26};
27
28int main()
29{
30 std::unordered_set<Customer, CustomerHash, CustomerEq> set1;
31 std::unordered_set<Customer, ManyParentsWithOperator<CustomerHash, CustomerEq>, ManyParentsWithOperator<CustomerHash, CustomerEq>> set2;
32 std::unordered_set<Customer, ManyParentsWithOperator<CustomerEq, CustomerHash>, ManyParentsWithOperator<CustomerEq, CustomerHash>> set3;
33
34 set1.emplace("Test");
35 set2.emplace("Test");
36 set3.emplace("Test");
37 return 0;
38}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected