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

Class COMLike

01.32-optional5/main.cpp:7–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5#include <type_traits>
6
7struct COMLike {
8 ~COMLike() {} // #A Make it not default destructible
9 void Release(); // #B Release all data
10
11 // Some data fields
12};
13
14void COMLike::Release()
15{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected