MCPcopy Create free account
hub / github.com/changkun/modern-cpp-tutorial / Foo

Method Foo

code/5/5.2.cpp:5–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3
4struct Foo {
5 Foo() { std::cout << "Foo::Foo" << std::endl; }
6 ~Foo() { std::cout << "Foo::~Foo" << std::endl; }
7 void foo() { std::cout << "Foo::foo" << std::endl; }
8};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected