------------------------------- ComponentSignature comparison
| 122 | // ComponentSignature comparison |
| 123 | // |
| 124 | bool operator==(ComponentSignature const& lhs, ComponentSignature const& rhs) |
| 125 | { |
| 126 | return std::equal(lhs.GetTypes().cbegin(), lhs.GetTypes().cend(), rhs.GetTypes().cbegin()); |
| 127 | } |
| 128 | |
| 129 | |
| 130 | } // namespace fw |
nothing calls this directly
no outgoing calls
no test coverage detected