Skip to content
Snippets Groups Projects
Commit b0a696f1 authored by Scott Snyder's avatar Scott Snyder Committed by scott snyder
Browse files

RootStorageSvc: Fix coverity 118827, 118828.

Coverity warnings: Implicit copy/assign in class that manages resources.
Delete implicit copy ctor/assignment in RootTreeIndexContainer.


Former-commit-id: 0131685d
parent 24aa6ab8
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,9 @@ namespace pool {
/// Standard constructor
RootTreeIndexContainer();
RootTreeIndexContainer (const RootTreeIndexContainer&) = delete;
RootTreeIndexContainer& operator= (const RootTreeIndexContainer&) = delete;
/// Standard destructor
virtual ~RootTreeIndexContainer();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment