MCPcopy Create free account
hub / github.com/BowenFu/matchit.cpp / DummyStruct

Class DummyStruct

sample/customDs.cpp:4–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2#include <iostream>
3
4struct DummyStruct
5{
6 int32_t size;
7 char const *name;
8};
9constexpr bool operator==(DummyStruct const &lhs, DummyStruct const &rhs)
10{
11 return lhs.size == rhs.size && lhs.name == rhs.name;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected