MCPcopy Create free account
hub / github.com/andreasfertig/programming-with-cpp20 / Address

Class Address

06.15-customOrdering0/main.cpp:9–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7#include <string>
8
9struct Address {
10 std::string city;
11 std::string street;
12 uint32_t street_no;
13
14 auto operator<=>(const Address&) const = default;
15};
16
17int main()
18{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected