| 84 | class SingletonNodeBase : public Base { |
| 85 | public: |
| 86 | SingletonNodeBase(const SingletonNodeBase&) = delete; |
| 87 | SingletonNodeBase& operator=(const SingletonNodeBase&) = delete; |
| 88 | |
| 89 | SingletonNodeBase(SingletonNodeBase&&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected