Commit f744c531 authored by Po-Yen, Chen's avatar Po-Yen, Chen
Browse files

Prohibit users from calling dtor

parent 2691d10c
......@@ -10,7 +10,8 @@
class ProfilerOperationRegistry final
{
ProfilerOperationRegistry() = default;
ProfilerOperationRegistry() = default;
~ProfilerOperationRegistry() = default;
public:
using Operation = std::function<int(int, char*[])>;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment