Skip to content
Snippets Groups Projects
Commit 53dcc603 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

RF: Make _owner a non-const pointer-to-const to allow copy-assignment

parent 5e935dd4
No related branches found
No related tags found
1 merge request!42RF: Improve thread-safety of `NEWIMAGE::volume` class
Pipeline #26648 skipped
...@@ -803,7 +803,7 @@ class ShadowVolume : public volume<T> { ...@@ -803,7 +803,7 @@ class ShadowVolume : public volume<T> {
private: private:
bool assigned; bool assigned;
const volume<T>* const _owner; const volume<T>* _owner;
const volume<T>& owner() const; const volume<T>& owner() const;
public: public:
......
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