mirror of
https://github.com/OpenMW/openmw.git
synced 2025-11-30 09:04:31 +00:00
One last pair of rule-of-three warnings for Clang
This commit is contained in:
parent
7ebb0cf577
commit
4eb69427dd
1 changed files with 8 additions and 0 deletions
|
|
@ -48,6 +48,10 @@ namespace Fx
|
|||
mPasses.emplace_back(subpass, copyOp);
|
||||
}
|
||||
|
||||
~DispatchNode() = default;
|
||||
|
||||
DispatchNode& operator=(const DispatchNode&) = default;
|
||||
|
||||
struct SubPass
|
||||
{
|
||||
SubPass() = default;
|
||||
|
|
@ -70,6 +74,10 @@ namespace Fx
|
|||
if (other.mRenderTexture)
|
||||
mRenderTexture = new osg::Texture2D(*other.mRenderTexture, copyOp);
|
||||
}
|
||||
|
||||
~SubPass() = default;
|
||||
|
||||
SubPass& operator=(const SubPass&) = default;
|
||||
};
|
||||
|
||||
void compile()
|
||||
|
|
|
|||
Loading…
Reference in a new issue